Working on terminal / zsh

This commit is contained in:
2026-03-08 10:58:03 +01:00
parent 2b32bb8ac0
commit 5f5a8f1dcf
4 changed files with 350 additions and 340 deletions
+338 -333
View File
File diff suppressed because it is too large Load Diff
@@ -4,13 +4,17 @@ let
in in
{ {
home-manager.users.${user.username} = { home-manager.users.${user.username} = {
# Kitty Terminal
programs.kitty = { programs.kitty = {
enable = true; enable = true;
}; };
# Kitty config (main + theme) # Copy the actual kitty.conf (not a symlink)
xdg.configFile."kitty/kitty.conf".source = "${flakeRoot}/assets/conf/kitty/kitty.conf"; xdg.configFile."kitty/kitty.conf".text = lib.concatStringsSep "\n" [
(builtins.readFile "${flakeRoot}/assets/common/conf/kitty/kitty.conf")
"include ${kittyConfigDir}/themes/Catppuccin-Mocha.conf"
];
}; # Copy the theme file
xdg.configFile."kitty/themes/Catppuccin-Mocha.conf".source = "${flakeRoot}/assets/common/conf/kitty/themes/Catppuccin-Mocha.conf";
};
} }
@@ -3,9 +3,9 @@
home-manager.users.${user.username} = { home-manager.users.${user.username} = {
programs.starship = { programs.starship = {
enable = true; enable = true;
settings = {
configFile = "${flakeRoot}/assets/common/conf/starship.toml";
};
}; };
# Use the starship.toml from your assets <-- this should be the only place doing it!
xdg.configFile."starship.toml".source = "${flakeRoot}/assets/common/conf/starship.toml";
}; };
} }
@@ -7,6 +7,7 @@ in
# Install zsh-syntax-highlighting # Install zsh-syntax-highlighting
home.packages = with pkgs; [ home.packages = with pkgs; [
zsh-syntax-highlighting zsh-syntax-highlighting
starship
]; ];
programs.zsh = { programs.zsh = {