Compare commits
3 Commits
10fba583b7
...
8bf5603afc
Author | SHA1 | Date | |
---|---|---|---|
8bf5603afc | |||
39ee17fb84 | |||
c15b864bd3 |
@ -57,6 +57,7 @@
|
||||
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,13 +7,21 @@
|
||||
./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";
|
||||
|
||||
@ -115,11 +123,11 @@
|
||||
# Open Tablet Driver setup
|
||||
hardware.opentabletdriver.enable = true;
|
||||
|
||||
# load amdgpu at boot
|
||||
# load amdgpu and nouveau at boot
|
||||
boot.initrd.kernelModules = [ "amdgpu" ];
|
||||
|
||||
# Load nvidia driver for Xorg and Wayland
|
||||
services.xserver.videoDrivers = [ "amdgpu" "nvidia" ];
|
||||
services.xserver.videoDrivers = [ "amdgpu" ];
|
||||
|
||||
# Steam settings
|
||||
programs.steam = {
|
||||
|
@ -1,5 +1,7 @@
|
||||
{ config, ... }:
|
||||
{
|
||||
|
||||
services.xserver.videoDrivers = [ "nvidia" ];
|
||||
# Nvidia settings
|
||||
hardware.nvidia = {
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user