From 5325de4da2da0bd4d3fdb4859f5f0735a6c3a3a7 Mon Sep 17 00:00:00 2001 From: Pedro Rey Anca Date: Thu, 10 Jul 2025 09:30:14 +0200 Subject: [PATCH 1/3] Fix Retroarch --- modules/home/retroarch.nix | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/modules/home/retroarch.nix b/modules/home/retroarch.nix index 09c2409..4bee7d2 100644 --- a/modules/home/retroarch.nix +++ b/modules/home/retroarch.nix @@ -1,12 +1,11 @@ {pkgs, ...}: { home.packages = with pkgs; [ - (retroarch.override { - cores = with libretro; [ + (retroarch.withCores (cores: + with cores; [ fceumm gambatte mgba snes9x - ]; - }) + ])) ]; } From 9962e0181f53cc5c18d9180b9359dd7c411ccdef Mon Sep 17 00:00:00 2001 From: Pedro Rey Anca Date: Thu, 10 Jul 2025 11:25:45 +0200 Subject: [PATCH 2/3] Use openpgp keyserver --- modules/home/gpg.nix | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/modules/home/gpg.nix b/modules/home/gpg.nix index 57d5cd1..5c75d91 100644 --- a/modules/home/gpg.nix +++ b/modules/home/gpg.nix @@ -1,5 +1,10 @@ {pkgs, ...}: { - programs.gpg.enable = true; + programs.gpg = { + enable = true; + settings = { + keyserver = "hkps://keys.openpgp.org"; + }; + }; services.gpg-agent = { enable = true; enableSshSupport = true; From b837ef9a8d0fb923df31a019b4ffe727a7c194c1 Mon Sep 17 00:00:00 2001 From: Pedro Rey Anca Date: Thu, 10 Jul 2025 12:00:48 +0200 Subject: [PATCH 3/3] Disable grub theming --- modules/core/stylix.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/modules/core/stylix.nix b/modules/core/stylix.nix index 45af481..48e231a 100644 --- a/modules/core/stylix.nix +++ b/modules/core/stylix.nix @@ -7,6 +7,9 @@ stylix = { enable = true; base16Scheme = "${pkgs.base16-schemes}/share/themes/catppuccin-mocha.yaml"; - targets.console.enable = false; + targets = { + console.enable = false; + grub.enable = false; + }; }; }