-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdefault.nix
More file actions
46 lines (42 loc) · 817 Bytes
/
default.nix
File metadata and controls
46 lines (42 loc) · 817 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
{
config,
pkgs,
lib,
lightweight,
...
}: {
imports = [
./programs
./services.nix
];
age.identityPaths = [
"${config.home.homeDirectory}/.ssh/id_ed25519_agenix"
];
rc = lib.mkMerge [
{
development.ai.enable = true;
development.shell.enable = true;
editor.enable = true;
git.enable = true;
ssh.enable = true;
utilities = {
base.enable = true;
nix.enable = true;
system.enable = true;
};
}
(lib.mkIf (!lightweight) {
development = {
containers.enable = true;
javascript.enable = true;
};
graphite.enable = true;
jujutsu.enable = true;
utilities = {
file.enable = true;
media.enable = true;
};
})
];
home.stateVersion = "23.11";
}