diff options
Diffstat (limited to 'profiles')
-rw-r--r-- | profiles/desktop.nix | 35 | ||||
-rw-r--r-- | profiles/server.nix | 4 |
2 files changed, 39 insertions, 0 deletions
diff --git a/profiles/desktop.nix b/profiles/desktop.nix new file mode 100644 index 0000000..2546b76 --- /dev/null +++ b/profiles/desktop.nix | |||
@@ -0,0 +1,35 @@ | |||
1 | inputs: | ||
2 | |||
3 | { pkgs, ... }: | ||
4 | |||
5 | { | ||
6 | imports = [ | ||
7 | inputs.self.nixosModules.usecases.desktop.default | ||
8 | ]; | ||
9 | |||
10 | users.extraUsers.minijackson.packages = with pkgs; [ | ||
11 | pass | ||
12 | tmuxp | ||
13 | taskwarrior | ||
14 | tokei | ||
15 | neofetch | ||
16 | ffmpeg | ||
17 | youtube-dl | ||
18 | pavucontrol | ||
19 | pandoc | ||
20 | poppler_utils | ||
21 | # TODO: on development workstation | ||
22 | /* | ||
23 | rr | ||
24 | rtags | ||
25 | gcc | ||
26 | clang | ||
27 | clang-tools | ||
28 | */ | ||
29 | aspell | ||
30 | aspellDicts.en | ||
31 | aspellDicts.en-computers | ||
32 | aspellDicts.en-science | ||
33 | aspellDicts.fr | ||
34 | ]; | ||
35 | } | ||
diff --git a/profiles/server.nix b/profiles/server.nix index 3084d26..ec4b1c6 100644 --- a/profiles/server.nix +++ b/profiles/server.nix | |||
@@ -1,9 +1,13 @@ | |||
1 | inputs: | ||
2 | |||
1 | { modulesPath, ... }: | 3 | { modulesPath, ... }: |
2 | 4 | ||
3 | { | 5 | { |
4 | imports = [ | 6 | imports = [ |
5 | (modulesPath + "/profiles/headless.nix") | 7 | (modulesPath + "/profiles/headless.nix") |
6 | (modulesPath + "/profiles/hardened.nix") | 8 | (modulesPath + "/profiles/hardened.nix") |
9 | |||
10 | inputs.self.nixosModules.usecases.server.default | ||
7 | ]; | 11 | ]; |
8 | 12 | ||
9 | } | 13 | } |