Compare commits

...

2 commits

Author SHA1 Message Date
cy
0bc79e85ad is this gonna work 2025-01-23 01:33:50 -05:00
cy
9de0b072cd make kitty TERM work on other computers 2025-01-23 01:32:22 -05:00
5 changed files with 4 additions and 8 deletions

View file

@ -13,6 +13,7 @@ jobs:
- titan
os:
- ubuntu-latest
- ubuntu-24.04-arm
runs-on: ${{ matrix.os }}
continue-on-error: true
steps:

View file

@ -9,7 +9,7 @@
};
themeFile = "GitHub_Dark";
settings = {
enable_audio_bell = false;
enable_audio_bell = true;
# how many windows should be open before kitty asks
# for confirmation
confirm_os_window_close = 0;
@ -20,6 +20,7 @@
"scrollback_pager_history_size" = "1024";
# see https://github.com/sharkdp/bat/issues/1077#issuecomment-652785399
"scrollback_pager" = "bat --pager='less -FR +G'";
"scrollback_lines" = 20000;
};
keybindings = {
# kitty_mod is ctrl+shift by default

View file

@ -16,7 +16,6 @@
systemd.user.startServices = "sd-switch";
home.packages = with pkgs; [
foot.terminfo
attic-server
];
}

View file

@ -49,12 +49,6 @@
x11.enable = true;
};
dconf.settings = {
"org/gnome/desktop/interface" = {
cursor-theme = "Bibata-Modern";
};
};
home.packages = with pkgs; [
firefox
ungoogled-chromium

View file

@ -197,4 +197,5 @@
};
};
virtualisation.oci-containers.backend = "podman";
environment.enableAllTerminfo = true;
}