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

Configure Feed

Select the types of activity you want to include in your feed.

fix: add fsType on noflake

+5 -1
+4 -1
Justfile
··· 4 4 just -l 5 5 6 6 check-all: 7 - nix-build ./templates/noflake --no-out-link -A flake.nixosConfigurations.igloo 7 + just check-noflake 8 8 just all check 9 9 just unit 10 + 11 + check-noflake: 12 + nix-build ./templates/noflake --no-out-link -A flake.nixosConfigurations.igloo 10 13 11 14 update-all: 12 15 cd templates/noflake && npins update den
+1
templates/noflake/modules/den.nix
··· 6 6 den.default.nixos = { 7 7 # remove for real host 8 8 fileSystems."/".device = "/dev/fake"; 9 + fileSystems."/".fsType = "auto"; 9 10 boot.loader.grub.enable = false; 10 11 }; 11 12