From 114fae331f1bf0ee71147b8cdd5ad187c64a45b2 Mon Sep 17 00:00:00 2001 From: nyanloutre Date: Mon, 29 Jul 2024 20:20:22 +0200 Subject: [PATCH 1/3] fix Epomaker Fn keys --- systems/PC-Fixe/configuration.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/systems/PC-Fixe/configuration.nix b/systems/PC-Fixe/configuration.nix index df609f1..6caccbf 100644 --- a/systems/PC-Fixe/configuration.nix +++ b/systems/PC-Fixe/configuration.nix @@ -28,6 +28,9 @@ ]; boot.tmp.useTmpfs = false; boot.supportedFilesystems = [ "zfs" ]; + boot.extraModprobeConfig = '' + options hid_apple fnmode=2 + ''; virtualisation.podman.enable = true; From 43e14afa38e1ce3269aed6024c67891c0253f61c Mon Sep 17 00:00:00 2001 From: nyanloutre Date: Mon, 29 Jul 2024 20:22:42 +0200 Subject: [PATCH 2/3] disable old HDD mount --- systems/PC-Fixe/hardware-configuration.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/systems/PC-Fixe/hardware-configuration.nix b/systems/PC-Fixe/hardware-configuration.nix index 1deb602..97fc3ee 100644 --- a/systems/PC-Fixe/hardware-configuration.nix +++ b/systems/PC-Fixe/hardware-configuration.nix @@ -40,10 +40,10 @@ fsType = "zfs"; }; - fileSystems."/mnt/hdd" = - { device = "/dev/mapper/ManjaroVG-ManjaroRoot"; - fsType = "ext4"; - }; + # fileSystems."/mnt/hdd" = + # { device = "/dev/mapper/ManjaroVG-ManjaroRoot"; + # fsType = "ext4"; + # }; fileSystems."/mnt/medias" = { device = "10.30.0.1:/mnt/medias"; From 2b9d525a50387a934d4470d9b9d3d5efe3f651f1 Mon Sep 17 00:00:00 2001 From: nyanloutre Date: Mon, 29 Jul 2024 20:23:06 +0200 Subject: [PATCH 3/3] fix browserpass in Firefox --- systems/common-gui.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/systems/common-gui.nix b/systems/common-gui.nix index b58f9d4..99b065c 100644 --- a/systems/common-gui.nix +++ b/systems/common-gui.nix @@ -17,7 +17,6 @@ ledger-live-desktop monero-gui - firefox tor-browser-bundle-bin brave @@ -73,6 +72,7 @@ console.keyMap = "fr"; programs.steam.enable = true; + programs.firefox.enable = true; security.rtkit.enable = true;