diff --git a/modules_dentritic/features/core/locales.nix b/modules_dentritic/features/core/locales.nix index bcd296d..c407ebc 100644 --- a/modules_dentritic/features/core/locales.nix +++ b/modules_dentritic/features/core/locales.nix @@ -1,5 +1,5 @@ { self, inputs, ... }: { - flake.nixosConfigurations.locales = { pkgs, lib, ... }: { + flake.nixosModules.locales = { pkgs, lib, ... }: { # Toute la configuration lié à la langue, etc... time.timeZone = "Europe/Paris"; diff --git a/modules_dentritic/features/core/shell.nix b/modules_dentritic/features/core/shell.nix index bab66eb..4d7aeeb 100644 --- a/modules_dentritic/features/core/shell.nix +++ b/modules_dentritic/features/core/shell.nix @@ -47,6 +47,12 @@ }; nixosModules.shell = { pkgs, lib, ... }: { + programs.zsh = { + enable = true; + autosuggestions = { + enable = true; + }; + }; environment = { pathsToLink = [ "/share/zsh" ]; systemPackages = with pkgs; [ diff --git a/modules_dentritic/features/desktop/gaming/steam.nix b/modules_dentritic/features/desktop/gaming/steam.nix index 46a7131..f5a8b14 100644 --- a/modules_dentritic/features/desktop/gaming/steam.nix +++ b/modules_dentritic/features/desktop/gaming/steam.nix @@ -34,5 +34,5 @@ prismlauncher ]; }; - } + }; }