From 2b15ea720866d9758e84ba27b83a8a0dc4efe2d6 Mon Sep 17 00:00:00 2001 From: smayzy Date: Tue, 8 Jul 2025 17:50:45 +0200 Subject: [PATCH] put keymap in default --- hosts/desktop1/configuration.nix | 6 ------ modules/nix/default.nix | 5 +++++ 2 files changed, 5 insertions(+), 6 deletions(-) diff --git a/hosts/desktop1/configuration.nix b/hosts/desktop1/configuration.nix index 915a494..2b93e9a 100644 --- a/hosts/desktop1/configuration.nix +++ b/hosts/desktop1/configuration.nix @@ -40,12 +40,6 @@ networking.hostName = "desktop1"; networking.networkmanager.enable = true; - services.xserver.xkb = { - layout = "fr"; - variant = ""; - }; - console.keyMap = "fr"; - services.desktopManager.plasma6.enable = true; services.displayManager.sddm.enable = true; services.displayManager.sddm.wayland.enable = true; diff --git a/modules/nix/default.nix b/modules/nix/default.nix index 4fdcd64..1a36987 100644 --- a/modules/nix/default.nix +++ b/modules/nix/default.nix @@ -23,4 +23,9 @@ "nvidia-x11" "nvidia-settings" ]; + services.xserver.xkb = { + layout = "fr"; + variant = ""; + }; + console.keyMap = "fr"; }