Modular, context-aware and aspect-oriented dendritic Nix configurations. Discussions: https://oeiuwq.zulipchat.com/join/nqp26cd4kngon6mo3ncgnuap/
at main 12 lines 324 B view raw
1{ 2 # globally enable fish on all homes ever. 3 den.default.homeManager.programs.fish.enable = true; 4 5 perSystem = 6 { checkCond, alice-at-rockhopper, ... }: 7 { 8 checks.alice-hm-fish-enabled-by-default = checkCond "home-managed fish for alice" ( 9 alice-at-rockhopper.programs.fish.enable 10 ); 11 }; 12}