my over complex system configurations dotfiles.isabelroses.com/
nixos nix flake dotfiles linux
at main 13 lines 277 B view raw
1{ self, config, ... }: 2let 3 inherit (self.lib) anyHome; 4 5 qh = anyHome config; 6in 7{ 8 # home-manager is so strange and needs these declared multiple times 9 programs = { 10 fish.enable = qh (c: c.programs.fish.enable); 11 zsh.enable = qh (c: c.programs.zsh.enable); 12 }; 13}