This commit is contained in:
iFargle 2023-07-26 21:42:33 +09:00
parent 10b9912136
commit 63075c81e9
2 changed files with 14 additions and 6 deletions

View file

@ -70,12 +70,6 @@
neofetch neofetch
gnupg gnupg
fail2ban fail2ban
# nvtop for use with nvidia cards
nvtop-nvidia
# Game related things
gamemode
]; ];
# Enable tailscale # Enable tailscale

View file

@ -19,6 +19,13 @@
# https://libreddit.kavin.rocks/r/NixOS/comments/x04dyv/optimus_help/ # https://libreddit.kavin.rocks/r/NixOS/comments/x04dyv/optimus_help/
# boot.kernelParams = [ "nomodeset" ]; # boot.kernelParams = [ "nomodeset" ];
#
#
#
# nVidia information:
# https://github.com/NixOS/nixpkgs/pull/211300
# https://github.com/NixOS/nixpkgs/pull/244060
hardware = { hardware = {
opengl.enable = true; opengl.enable = true;
opengl.driSupport32Bit = true; opengl.driSupport32Bit = true;
@ -50,6 +57,7 @@
# __GLX_VENDOR_LIBRARY_NAME = "nvidia"; # __GLX_VENDOR_LIBRARY_NAME = "nvidia";
# }; # };
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [
# Fingerprint software # Fingerprint software
fprintd fprintd
@ -59,6 +67,12 @@
vulkan-tools vulkan-tools
gwe gwe
# nvtop for use with nvidia cards
nvtop-nvidia
# Game related things
gamemode
# wine install # wine install
# support both 32- and 64-bit applications # support both 32- and 64-bit applications
wineWowPackages.stable wineWowPackages.stable