diff --git a/Droidnix/generated/system/applications/terminal_shell/zsh.nix b/Droidnix/generated/system/applications/terminal_shell/zsh.nix index f690db10b..b26e560fc 100644 --- a/Droidnix/generated/system/applications/terminal_shell/zsh.nix +++ b/Droidnix/generated/system/applications/terminal_shell/zsh.nix @@ -1,4 +1,11 @@ -{ config, pkgs, lib, user, flakeRoot, ... }: +{ + config, + pkgs, + lib, + user, + flakeRoot, + ... +}: let zshConfigDir = "${config.home-manager.users.${user.username}.xdg.configHome}/zsh"; assetsDir = "${flakeRoot}/assets/common/conf/zsh"; @@ -35,4 +42,5 @@ in # Use the .zshrc file from assets xdg.configFile."zsh/.zshrc".source = "${assetsDir}/.zshrc"; + }; }