Regenerated

This commit is contained in:
2026-03-22 14:45:16 +00:00
parent f5b06344e4
commit 4fa73c557e
32 changed files with 5 additions and 1598 deletions
+5 -10
View File
@@ -1218,18 +1218,13 @@ This sets up the zsh in the terminal
let
username = config.users.users.defaultUser or "henrov";
homeDir = "/home/${username}";
programName = "zsh";
programAssets = ../../../assets/system/conf/${programName};
zshInitFile = "${programAssets}/zsh.conf";
in
{
# Ensure zsh is installed system-wide
environment.systemPackages = [ pkgs.zsh ];
# Home Manager configuration for the default user
home.username = username;
home.homeDirectory = homeDir;
# Make sure Zsh is available to the user
home.packages = [ pkgs.zsh ];
programs.zsh = {
enable = true;
@@ -1245,10 +1240,10 @@ in
"direnv"
"zsh-completions"
];
# Inject custom Zsh configuration
shellInit = builtins.readFile zshInitFile;
};
# Inject extra Zsh config
shellInit = builtins.readFile zshInitFile;
};
}
#+END_SRC