Fixed typos and errors

This commit is contained in:
Alexandre 2026-06-23 19:51:18 +00:00
parent 51a52984a9
commit c7cf39e939
3 changed files with 8 additions and 2 deletions

View File

@ -1,5 +1,5 @@
{ self, inputs, ... }: { { self, inputs, ... }: {
flake.nixosConfigurations.locales = { pkgs, lib, ... }: { flake.nixosModules.locales = { pkgs, lib, ... }: {
# Toute la configuration lié à la langue, etc... # Toute la configuration lié à la langue, etc...
time.timeZone = "Europe/Paris"; time.timeZone = "Europe/Paris";

View File

@ -47,6 +47,12 @@
}; };
nixosModules.shell = { pkgs, lib, ... }: { nixosModules.shell = { pkgs, lib, ... }: {
programs.zsh = {
enable = true;
autosuggestions = {
enable = true;
};
};
environment = { environment = {
pathsToLink = [ "/share/zsh" ]; pathsToLink = [ "/share/zsh" ];
systemPackages = with pkgs; [ systemPackages = with pkgs; [

View File

@ -34,5 +34,5 @@
prismlauncher prismlauncher
]; ];
}; };
} };
} }