It said this is incompatible with zsh, need to force command-not-found to false

This commit is contained in:
Lillian Violet 2024-04-23 11:44:47 +02:00
parent 95d129f1a3
commit 9c6007bea8
3 changed files with 5 additions and 2 deletions

View file

@ -211,7 +211,6 @@
system = "armv7l-linux"; system = "armv7l-linux";
specialArgs = {inherit inputs outputs;}; specialArgs = {inherit inputs outputs;};
modules = [ modules = [
nix-index-database.nixosModules.nix-index
# make the module declared by the linger flake available to our config # make the module declared by the linger flake available to our config
#linger.nixosModules."armv7l-linux".default #linger.nixosModules."armv7l-linux".default
#pihole.nixosModules."armv7l-linux".default #pihole.nixosModules."armv7l-linux".default

View file

@ -27,7 +27,7 @@
}; };
# Allow executing of anything on the system with a , eg: , python executes python from the nix store even if not in $PATH currently # Allow executing of anything on the system with a , eg: , python executes python from the nix store even if not in $PATH currently
programs.command-not-found.enable = false; programs.command-not-found.enable = lib.mkForce false;
programs.nix-index.enable = true; programs.nix-index.enable = true;
programs.nix-index-database.comma.enable = true; programs.nix-index-database.comma.enable = true;

View file

@ -19,6 +19,10 @@
../../shared ../../shared
]; ];
programs.command-not-found.enable = lib.mkForce false;
programs.nix-index.enable = true;
programs.nix-index-database.comma.enable = true;
boot.tmp.cleanOnBoot = true; boot.tmp.cleanOnBoot = true;
zramSwap.enable = false; zramSwap.enable = false;
networking.domain = ""; networking.domain = "";