Compare commits

..

3 Commits

Author SHA1 Message Date
8bf5603afc Trying out nvk. 2024-03-01 14:15:21 +01:00
39ee17fb84 Move some things 2024-03-01 14:14:58 +01:00
c15b864bd3 Added prism launcher. 2024-03-01 14:14:50 +01:00
3 changed files with 14 additions and 3 deletions

View File

@ -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 ]; })

View File

@ -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 = {

View File

@ -1,5 +1,7 @@
{ config, ... }:
{
services.xserver.videoDrivers = [ "nvidia" ];
# Nvidia settings
hardware.nvidia = {