Configuration for my NixOS based systems and Home Manager
0
fork

Configure Feed

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

Neovim overlay used on all basic systems

+5 -3
+5 -3
flake.nix
··· 73 73 }: 74 74 let 75 75 unstable = import nixpkgs-unstable { 76 - inherit system overlays; 76 + inherit system; 77 + overlays = overlays ++ [ 78 + (import ./overlays/neovim.nix) 79 + ]; 77 80 config.allowUnfree = true; 78 81 }; 79 82 in ··· 130 133 (final: prev: { 131 134 lmstudio = final.pkgs.callPackage ./overlays/lmstudio.nix { }; 132 135 }) 133 - (import ./overlays/opencode.nix) 134 136 ]; 135 137 }; 136 138 nixosConfigurations.misaki = basicSystem { ··· 186 188 (final: prev: { 187 189 claude-code = claude-code.packages.aarch64-darwin.claude-code; 188 190 }) 191 + (import ./overlays/neovim.nix) 189 192 ]; 190 193 }; 191 194 # Specify your home configuration modules here, for example, ··· 217 220 config.allowUnfree = true; 218 221 overlays = [ 219 222 (import ./overlays/neovim.nix) 220 - (import ./overlays/opencode.nix) 221 223 ]; 222 224 }; 223 225 in