tangled
alpha
login
or
join now
ovyerus.com
/
dotfiles
1
fork
atom
Nix configurations for my personal machines (Linux & macOS)
1
fork
atom
overview
issues
pulls
pipelines
feat: add affinity and obsidian to darwin
ovyerus.com
1 month ago
341ecf8e
ebfde72f
verified
This commit was signed with the committer's
known signature
.
ovyerus.com
SSH Key Fingerprint:
SHA256:mXbp9WNBIT0nRNe28t2hrxfSwnSX7UBeW2DVlIyf0uw=
+13
-1
3 changed files
expand all
collapse all
unified
split
modules
darwin
homebrew.nix
programs
desktop-apps.nix
obsidian.nix
+1
modules/darwin/homebrew.nix
···
27
27
28
28
casks = [
29
29
"1password"
30
30
+
"affinity"
30
31
"blender"
31
32
"discord"
32
33
"figma"
-1
modules/programs/desktop-apps.nix
···
31
31
lunacy
32
32
lutris
33
33
# mixxx
34
34
-
obsidian
35
34
oversteer
36
35
p7zip
37
36
picard
+12
modules/programs/obsidian.nix
···
1
1
+
{
2
2
+
delib,
3
3
+
pkgs,
4
4
+
...
5
5
+
}:
6
6
+
delib.module {
7
7
+
name = "programs.obsidian";
8
8
+
9
9
+
options = delib.singleEnableOption true;
10
10
+
11
11
+
home.ifEnabled.home.packages = [pkgs.obsidian];
12
12
+
}