My Nix Configuration
2
fork

Configure Feed

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

at main 15 lines 249 B view raw
1{ 2 config, 3 lib, 4 ... 5}: 6let 7 cfg = config.py.programs.neovim; 8in 9{ 10 options.py.programs.neovim.enable = lib.mkEnableOption "Neovim Configuration"; 11 12 config = lib.mkIf cfg.enable { 13 home.sessionVariables.EDITOR = lib.mkForce "nvim"; 14 }; 15}