Redefine search engines

This commit is contained in:
Jimbo 2024-11-18 17:14:02 -05:00
parent f5831262b3
commit 79310cc53a
6 changed files with 71 additions and 15 deletions

View file

@ -33,6 +33,8 @@
files = [
".zsh_history"
".local/share/clipman.json"
".local/share/applications" # Create this so nothing gets generated inside of it
];
};
};

View file

@ -25,11 +25,14 @@
else [];
# Configure Nvidia settings if Nvidia is enabled
hardware.nvidia = lib.mkIf config.system.video.nvidia.enable {
modesetting.enable = true;
nvidiaSettings = false;
package = config.boot.kernelPackages.nvidiaPackages.beta;
open = false;
hardware = {
nvidia = lib.mkIf config.system.video.nvidia.enable {
modesetting.enable = true;
nvidiaSettings = false;
package = config.boot.kernelPackages.nvidiaPackages.beta;
open = false;
};
opengl.extraPackages = with pkgs; [ nvidia-vaapi-driver ];
};
};
}

View file

@ -6,7 +6,7 @@
enable = true;
extraRules = [
{ # Give wheel root access
groups = ["wheel"];
groups = [ "wheel" ];
keepEnv = true;
persist = true;
}