From 963c5db09ac7dccb80324876a561478de32276f6 Mon Sep 17 00:00:00 2001 From: "info@data-pro.nu" Date: Mon, 9 Mar 2026 16:26:38 +0100 Subject: [PATCH] working on zsh --- .../system/applications/terminal_shell/zsh.nix | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) 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"; + }; }