From d28158c4e9ee84341c5912723b27a2170f053a84 Mon Sep 17 00:00:00 2001 From: Yorick Barbanneau Date: Sun, 14 Jul 2024 23:38:36 +0200 Subject: [PATCH 1/4] chore: update gamescope configuration (GPU change) --- modules/nixos/gaming/steam/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/nixos/gaming/steam/default.nix b/modules/nixos/gaming/steam/default.nix index 158b021..5ba01dc 100644 --- a/modules/nixos/gaming/steam/default.nix +++ b/modules/nixos/gaming/steam/default.nix @@ -31,7 +31,7 @@ in gamescopeSession = { enable = cfg.gamescope; args = [ - "-O HDMI-A-1" + "-O HDMI-A-2" "-F fsr" ]; }; From 98ea927cd1f809e56f9283b8caeaa308bb19c146 Mon Sep 17 00:00:00 2001 From: Yorick Barbanneau Date: Sun, 14 Jul 2024 23:40:18 +0200 Subject: [PATCH 2/4] chore: remove useless emojione font --- modules/home-manager/desktop/sway/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/home-manager/desktop/sway/default.nix b/modules/home-manager/desktop/sway/default.nix index f092c4f..e45a78c 100644 --- a/modules/home-manager/desktop/sway/default.nix +++ b/modules/home-manager/desktop/sway/default.nix @@ -84,7 +84,7 @@ in home.packages = with pkgs; [ dejavu_fonts - emojione + # emojione font-awesome grim lato From 9eb3d122c0607c10c4771f28f774082ffb35f544 Mon Sep 17 00:00:00 2001 From: Yorick Barbanneau Date: Tue, 13 Aug 2024 23:53:21 +0200 Subject: [PATCH 3/4] feat: add Coolercontrol application And related kernel parameter for AMG GPU --- hosts/mrmeeseeks/hardware-configuration.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/hosts/mrmeeseeks/hardware-configuration.nix b/hosts/mrmeeseeks/hardware-configuration.nix index e928813..2fdf861 100644 --- a/hosts/mrmeeseeks/hardware-configuration.nix +++ b/hosts/mrmeeseeks/hardware-configuration.nix @@ -24,6 +24,10 @@ "kvm-amd" "amdgpu" ]; + + boot.kernelParams = [ + "amdgpu.ppfeaturemask=0xffffffff" + ]; boot.extraModulePackages = [ ]; boot.initrd.luks.devices."nixos".device = "/dev/disk/by-uuid/ea7fa60d-35e5-48b8-95d7-142f37b262cd"; @@ -69,4 +73,5 @@ }; hardware.bluetooth.enable = true; hardware.xpadneo.enable = true; + programs.coolercontrol.enable = true; } From d123546252057be311cef1a4450fa1e5ce62655a Mon Sep 17 00:00:00 2001 From: Yorick Barbanneau Date: Wed, 14 Aug 2024 00:41:04 +0200 Subject: [PATCH 4/4] chore: Which-key Neovim plugin configuration --- modules/home-manager/cli/neovim/files/whichkey.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/home-manager/cli/neovim/files/whichkey.lua b/modules/home-manager/cli/neovim/files/whichkey.lua index 0b51321..a3cf600 100644 --- a/modules/home-manager/cli/neovim/files/whichkey.lua +++ b/modules/home-manager/cli/neovim/files/whichkey.lua @@ -1,4 +1,4 @@ -- Which-key -- local wk = require 'which-key' -wk.register() +-- wk.register()