From 1bdab821a69e1834cc7760b65c29d7da6528de3e Mon Sep 17 00:00:00 2001 From: smayzy Date: Tue, 8 Jul 2025 17:46:36 +0200 Subject: [PATCH] zsh forgot --- hosts/desktop1/configuration.nix | 2 -- modules/nix/shell/zsh.nix | 1 + 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/hosts/desktop1/configuration.nix b/hosts/desktop1/configuration.nix index 6b342bc..915a494 100644 --- a/hosts/desktop1/configuration.nix +++ b/hosts/desktop1/configuration.nix @@ -40,8 +40,6 @@ networking.hostName = "desktop1"; networking.networkmanager.enable = true; - users.defaultUserShell = pkgs.zsh; - services.xserver.xkb = { layout = "fr"; variant = ""; diff --git a/modules/nix/shell/zsh.nix b/modules/nix/shell/zsh.nix index 5522da1..611b3ea 100644 --- a/modules/nix/shell/zsh.nix +++ b/modules/nix/shell/zsh.nix @@ -11,5 +11,6 @@ in config = mkIf config.smayzy.zsh.enable { programs.zsh.enable = true; + users.defaultUserShell = pkgs.zsh; }; }