From 2ba00478d439f8e59c77adea58605465730d9dc4 Mon Sep 17 00:00:00 2001 From: "info@data-pro.nu" Date: Sun, 8 Mar 2026 10:41:36 +0100 Subject: [PATCH] =?UTF-8?q?Here=E2=80=99s=20a=20corrected=20version=20that?= =?UTF-8?q?=20avoids=20absolute=20paths=20and=20ensures=20compatibility=20?= =?UTF-8?q?with=20pure=20evaluation:?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Droidnix/README.org | 13 +------------ 1 file changed, 1 insertion(+), 12 deletions(-) diff --git a/Droidnix/README.org b/Droidnix/README.org index c6763560c..0d6b8204b 100644 --- a/Droidnix/README.org +++ b/Droidnix/README.org @@ -1116,9 +1116,8 @@ in }; # Kitty config (main + theme) - xdg.configFile."kitty/kitty.conf".source = "${flakeRoot}/assets/common/conf/kitty/kitty.conf"; + xdg.configFile."kitty/kitty.conf".source = "${flakeRoot}/assets/conf/kitty/kitty.conf"; - /* # Starship (with your custom config) programs.starship = { enable = true; @@ -1127,18 +1126,8 @@ in configFile = "${flakeRoot}/assets/conf/starship.toml"; }; }; - */ - - # Ensure Kitty's shell starts Starship - xdg.configFile."kitty/kitty.conf".text = lib.concatStringsSep "\n" [ - (builtins.readFile "${flakeRoot}/assets/common/conf/kitty/kitty.conf") - "" - "# Ensure Starship is loaded in Kitty's shell" - "shell ${pkgs.zsh}/bin/zsh -c \"${pkgs.starship}/bin/starship init zsh | source\"" - ]; }; } - #+END_SRC ** =generated/system/applications/terminal_shell/starship.nix=