This commit is contained in:
4DBug
2026-03-03 17:25:37 -06:00
parent c10eca565f
commit aeea92d752
12 changed files with 104 additions and 168 deletions

13
modules/hosts/nix.nix Normal file
View File

@@ -0,0 +1,13 @@
{ den, ... }: {
den.aspects.nix = {
includes = with den.aspects; [
common
nvidia
];
nixos = {
networking.hostName = "nix";
};
};
}