Working on terminal / zsh
This commit is contained in:
+338
-333
File diff suppressed because it is too large
Load Diff
@@ -4,13 +4,17 @@ let
|
||||
in
|
||||
{
|
||||
home-manager.users.${user.username} = {
|
||||
# Kitty Terminal
|
||||
programs.kitty = {
|
||||
enable = true;
|
||||
};
|
||||
|
||||
# Kitty config (main + theme)
|
||||
xdg.configFile."kitty/kitty.conf".source = "${flakeRoot}/assets/conf/kitty/kitty.conf";
|
||||
# Copy the actual kitty.conf (not a symlink)
|
||||
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} = {
|
||||
programs.starship = {
|
||||
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
|
||||
home.packages = with pkgs; [
|
||||
zsh-syntax-highlighting
|
||||
starship
|
||||
];
|
||||
|
||||
programs.zsh = {
|
||||
|
||||
Reference in New Issue
Block a user