Compare commits

...

4 commits

4 changed files with 8 additions and 3 deletions

View file

@ -25,6 +25,10 @@
"amdgpu" "amdgpu"
]; ];
boot.kernelParams = [
"amdgpu.ppfeaturemask=0xffffffff"
];
boot.extraModulePackages = [ ]; boot.extraModulePackages = [ ];
boot.initrd.luks.devices."nixos".device = "/dev/disk/by-uuid/ea7fa60d-35e5-48b8-95d7-142f37b262cd"; boot.initrd.luks.devices."nixos".device = "/dev/disk/by-uuid/ea7fa60d-35e5-48b8-95d7-142f37b262cd";
boot.initrd.luks.devices."nixos".preLVM = true; boot.initrd.luks.devices."nixos".preLVM = true;
@ -69,4 +73,5 @@
}; };
hardware.bluetooth.enable = true; hardware.bluetooth.enable = true;
hardware.xpadneo.enable = true; hardware.xpadneo.enable = true;
programs.coolercontrol.enable = true;
} }

View file

@ -1,4 +1,4 @@
-- Which-key -- Which-key
-- --
local wk = require 'which-key' local wk = require 'which-key'
wk.register() -- wk.register()

View file

@ -84,7 +84,7 @@ in
home.packages = with pkgs; [ home.packages = with pkgs; [
dejavu_fonts dejavu_fonts
emojione # emojione
font-awesome font-awesome
grim grim
lato lato

View file

@ -31,7 +31,7 @@ in
gamescopeSession = { gamescopeSession = {
enable = cfg.gamescope; enable = cfg.gamescope;
args = [ args = [
"-O HDMI-A-1" "-O HDMI-A-2"
"-F fsr" "-F fsr"
]; ];
}; };