My entire NixOS config or something!

Added nix-inspect

+2 -4
+1
configuration.nix
··· 93 93 wl-clipboard 94 94 ripgrep 95 95 git-filter-repo 96 + nix-inspect 96 97 ]; 97 98 98 99 # Some programs need SUID wrappers, can be configured further or are
-1
flake.nix
··· 11 11 12 12 outputs = { self, nixpkgs, nixvim, home-manager, nix-inspect, ... }@inputs: { 13 13 nixosConfigurations.delphi = nixpkgs.lib.nixosSystem { 14 - specialArgs = { inherit inputs; }; 15 14 modules = [ 16 15 ./configuration.nix 17 16 home-manager.nixosModules.home-manager
+1 -3
home.nix
··· 3 3 inputs.nixvim.homeModules.nixvim 4 4 ]; 5 5 home.stateVersion = "26.05"; 6 - 7 6 programs.nixvim = { 8 7 enable = true; 9 8 colorschemes.catppuccin.enable = true; ··· 14 13 highlight.enable = true; 15 14 }; 16 15 }; 17 - }; 18 - 16 + }; 19 17 }