tangled
alpha
login
or
join now
oeiuwq.com
/
den
8
fork
atom
Modular, context-aware and aspect-oriented dendritic Nix configurations. Discussions: https://oeiuwq.zulipchat.com/join/nqp26cd4kngon6mo3ncgnuap/
den.oeiuwq.com
configurations
den
dendritic
nix
aspect
oriented
8
fork
atom
overview
issues
4
pulls
2
pipelines
Update README.md
authored by
oeiuwq.com
and committed by
GitHub
2 weeks ago
80088aa9
c142ca2f
+6
1 changed file
expand all
collapse all
unified
split
README.md
+6
README.md
reviewed
···
133
133
nixos = { pkgs, ... }: { imports = [ inputs.disko.nixosModules.disko ]; };
134
134
darwin = { pkgs, ... }: { environment.packages = [ pkgs.hello ]; };
135
135
136
136
+
# Den `os` Nix class forwards to both nixos and darwin
137
137
+
os = { pkgs, ... }: {
138
138
+
networking.hostName = "yavanna";
139
139
+
environment.packages = [ pkgs.direnv ];
140
140
+
};
141
141
+
136
142
# host can contribute to its users' environment
137
143
homeManager.programs.vim.enable = true;
138
144
};