From c7cf39e93965b4c0aed0a184ca62e68fffdcd14b Mon Sep 17 00:00:00 2001 From: Alexandre Date: Tue, 23 Jun 2026 19:51:18 +0000 Subject: [PATCH] Fixed typos and errors --- modules_dentritic/features/core/locales.nix | 2 +- modules_dentritic/features/core/shell.nix | 6 ++++++ modules_dentritic/features/desktop/gaming/steam.nix | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) 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 ]; }; - } + }; }