Compare commits
3 Commits
10fba583b7
...
8bf5603afc
Author | SHA1 | Date | |
---|---|---|---|
8bf5603afc | |||
39ee17fb84 | |||
c15b864bd3 |
@ -57,6 +57,7 @@
|
|||||||
protonvpn-gui # Proton vpn gui app
|
protonvpn-gui # Proton vpn gui app
|
||||||
beets # Music tagger
|
beets # Music tagger
|
||||||
nicotine-plus # Amazing soulseek client
|
nicotine-plus # Amazing soulseek client
|
||||||
|
prismlauncher # Best minecraft launcher
|
||||||
(nerdfonts.override { fonts = [ "CascadiaCode" ]; }) # Best font
|
(nerdfonts.override { fonts = [ "CascadiaCode" ]; }) # Best font
|
||||||
(retroarch.override { cores = with libretro; [ snes9x ]; })
|
(retroarch.override { cores = with libretro; [ snes9x ]; })
|
||||||
|
|
||||||
|
@ -7,13 +7,21 @@
|
|||||||
./modules/wifi-dongle.nix
|
./modules/wifi-dongle.nix
|
||||||
./modules/disable-hibernation.nix
|
./modules/disable-hibernation.nix
|
||||||
./modules/dns-over-https.nix
|
./modules/dns-over-https.nix
|
||||||
./modules/nvidia.nix
|
# ./modules/nvidia.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
# Bootloader.
|
# Bootloader.
|
||||||
boot.loader.systemd-boot.enable = true;
|
boot.loader.systemd-boot.enable = true;
|
||||||
boot.loader.efi.canTouchEfiVariables = 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
|
# Set the hostname
|
||||||
networking.hostName = "nixos";
|
networking.hostName = "nixos";
|
||||||
|
|
||||||
@ -115,11 +123,11 @@
|
|||||||
# Open Tablet Driver setup
|
# Open Tablet Driver setup
|
||||||
hardware.opentabletdriver.enable = true;
|
hardware.opentabletdriver.enable = true;
|
||||||
|
|
||||||
# load amdgpu at boot
|
# load amdgpu and nouveau at boot
|
||||||
boot.initrd.kernelModules = [ "amdgpu" ];
|
boot.initrd.kernelModules = [ "amdgpu" ];
|
||||||
|
|
||||||
# Load nvidia driver for Xorg and Wayland
|
# Load nvidia driver for Xorg and Wayland
|
||||||
services.xserver.videoDrivers = [ "amdgpu" "nvidia" ];
|
services.xserver.videoDrivers = [ "amdgpu" ];
|
||||||
|
|
||||||
# Steam settings
|
# Steam settings
|
||||||
programs.steam = {
|
programs.steam = {
|
||||||
|
@ -1,5 +1,7 @@
|
|||||||
{ config, ... }:
|
{ config, ... }:
|
||||||
{
|
{
|
||||||
|
|
||||||
|
services.xserver.videoDrivers = [ "nvidia" ];
|
||||||
# Nvidia settings
|
# Nvidia settings
|
||||||
hardware.nvidia = {
|
hardware.nvidia = {
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user