mirror of
https://codeberg.org/jopejoe1/nix-conf.git
synced 2025-01-04 09:46:50 +01:00
Diasable most stuff
This commit is contained in:
parent
0ca31c5620
commit
10a7ce8a05
2 changed files with 14 additions and 14 deletions
|
@ -8,14 +8,14 @@ with lib;
|
||||||
networking.networkmanager.enable = true;
|
networking.networkmanager.enable = true;
|
||||||
|
|
||||||
custom.system.boot.uefi.enable = true;
|
custom.system.boot.uefi.enable = true;
|
||||||
custom.system.xdg.enable = true;
|
#custom.system.xdg.enable = true;
|
||||||
custom.system.fonts.enable = true;
|
#custom.system.fonts.enable = true;
|
||||||
custom.system.locale.enable = true;
|
custom.system.locale.enable = true;
|
||||||
custom.system.locale.layout = "de";
|
custom.system.locale.layout = "de";
|
||||||
custom.system.ssh.enable = true;
|
#custom.system.ssh.enable = true;
|
||||||
custom.nix.enable = true;
|
custom.nix.enable = true;
|
||||||
custom.hardware.audio.enable = true;
|
#custom.hardware.audio.enable = true;
|
||||||
custom.hardware.printing.enable = true;
|
#custom.hardware.printing.enable = true;
|
||||||
custom.desktop.plasma.enable = true;
|
custom.desktop.plasma.enable = true;
|
||||||
|
|
||||||
custom.user.jopejoe1.enable =true;
|
custom.user.jopejoe1.enable =true;
|
||||||
|
@ -26,7 +26,7 @@ with lib;
|
||||||
time.timeZone = "Europe/Berlin";
|
time.timeZone = "Europe/Berlin";
|
||||||
|
|
||||||
hardware.opengl.enable = true;
|
hardware.opengl.enable = true;
|
||||||
hardware.nvidia.package = config.boot.kernelPackages.nvidiaPackages.beta;
|
hardware.nvidia.package = config.boot.kernelPackages.nvidiaPackages.stable;
|
||||||
boot.kernelParams = [ "module_blacklist=i915" ];
|
boot.kernelParams = [ "module_blacklist=i915" ];
|
||||||
|
|
||||||
programs = {
|
programs = {
|
||||||
|
|
|
@ -6,15 +6,15 @@ in
|
||||||
{
|
{
|
||||||
imports = with nixos-hardware.nixosModules; [
|
imports = with nixos-hardware.nixosModules; [
|
||||||
(modulesPath + "/installer/scan/not-detected.nix")
|
(modulesPath + "/installer/scan/not-detected.nix")
|
||||||
common-cpu-intel
|
#common-cpu-intel
|
||||||
#common-gpu-nvidia
|
#common-gpu-nvidia
|
||||||
common-pc
|
#common-pc
|
||||||
common-pc-ssd
|
#common-pc-ssd
|
||||||
];
|
];
|
||||||
|
|
||||||
hardware.nvidia.prime = {
|
#hardware.nvidia.prime = {
|
||||||
offload.enable = false;
|
# offload.enable = false;
|
||||||
sync.enable = false;
|
#sync.enable = false;
|
||||||
|
|
||||||
# Bus ID of the Intel GPU. You can find it using lspci, either under 3D or VGA
|
# Bus ID of the Intel GPU. You can find it using lspci, either under 3D or VGA
|
||||||
#intelBusId = "PCI:0:2:0";
|
#intelBusId = "PCI:0:2:0";
|
||||||
|
@ -24,7 +24,7 @@ in
|
||||||
};
|
};
|
||||||
|
|
||||||
boot = {
|
boot = {
|
||||||
kernelPackages = pkgs.linuxPackages_5_10;
|
#kernelPackages = pkgs.linuxPackages_5_10;
|
||||||
|
|
||||||
initrd = {
|
initrd = {
|
||||||
# kernelModules = [ "amdgpu" ];
|
# kernelModules = [ "amdgpu" ];
|
||||||
|
@ -66,5 +66,5 @@ in
|
||||||
|
|
||||||
services.xserver.videoDrivers = [ "nvidia" ];
|
services.xserver.videoDrivers = [ "nvidia" ];
|
||||||
|
|
||||||
hardware.bluetooth.enable = false;
|
#hardware.bluetooth.enable = false;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue