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