Compare commits
No commits in common. "8bf5603afc2dc5383cd8424a7c22c9cb725cc590" and "10fba583b7815b043b5813141480c97b7e44942e" have entirely different histories.
8bf5603afc
...
10fba583b7
@ -57,7 +57,6 @@
|
||||
protonvpn-gui # Proton vpn gui app
|
||||
beets # Music tagger
|
||||
nicotine-plus # Amazing soulseek client
|
||||
prismlauncher # Best minecraft launcher
|
||||
(nerdfonts.override { fonts = [ "CascadiaCode" ]; }) # Best font
|
||||
(retroarch.override { cores = with libretro; [ snes9x ]; })
|
||||
|
||||
|
@ -7,21 +7,13 @@
|
||||
./modules/wifi-dongle.nix
|
||||
./modules/disable-hibernation.nix
|
||||
./modules/dns-over-https.nix
|
||||
# ./modules/nvidia.nix
|
||||
./modules/nvidia.nix
|
||||
];
|
||||
|
||||
# Bootloader.
|
||||
boot.loader.systemd-boot.enable = true;
|
||||
boot.loader.efi.canTouchEfiVariables = true;
|
||||
|
||||
# Latest kernel
|
||||
boot.kernelPackages = pkgs.linuxPackages;
|
||||
|
||||
boot.kernelParams = [
|
||||
"nouveau.config=NvGspRM=1"
|
||||
"nouveau.debug=info,VBIOS=info,gsp=debug"
|
||||
];
|
||||
|
||||
# Set the hostname
|
||||
networking.hostName = "nixos";
|
||||
|
||||
@ -123,11 +115,11 @@
|
||||
# Open Tablet Driver setup
|
||||
hardware.opentabletdriver.enable = true;
|
||||
|
||||
# load amdgpu and nouveau at boot
|
||||
# load amdgpu at boot
|
||||
boot.initrd.kernelModules = [ "amdgpu" ];
|
||||
|
||||
# Load nvidia driver for Xorg and Wayland
|
||||
services.xserver.videoDrivers = [ "amdgpu" ];
|
||||
services.xserver.videoDrivers = [ "amdgpu" "nvidia" ];
|
||||
|
||||
# Steam settings
|
||||
programs.steam = {
|
||||
|
@ -1,7 +1,5 @@
|
||||
{ config, ... }:
|
||||
{
|
||||
|
||||
services.xserver.videoDrivers = [ "nvidia" ];
|
||||
# Nvidia settings
|
||||
hardware.nvidia = {
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user