🧹 Mpv loop config, moved fish aliases to proper files

This commit is contained in:
2025-02-02 15:06:34 +01:00
parent bd2f725029
commit 76ebdad3ce
9 changed files with 113 additions and 115 deletions

View File

@ -8,14 +8,18 @@ in
flavor = theme.flavor;
};
programs.kitty = {
enable = common.default.terminal == "kitty";
font.name = theme.nerdFont;
settings = {
background_blur = 5;
background_opacity = 0.8;
confirm_os_window_close = 0;
window_padding_width = 10;
programs = {
# Transfer shell config to target device
fish.shellAliases.ssh = "kitty +kitten ssh";
kitty = {
enable = common.default.terminal == "kitty";
font.name = theme.nerdFont;
settings = {
background_blur = 5;
background_opacity = 0.8;
confirm_os_window_close = 0;
window_padding_width = 10;
};
};
};
}