Files
my_nixos/home/yaroslav/kitty.nix
T
yaroslav 7850408607 Added various things, returned Aphelion back to functional state now
with zfs

Note: this is probably the first commit with coq-nvim working again,
don't remove uder any circumstances
2025-07-27 16:18:35 +03:00

15 lines
172 B
Nix

{ pkgs, ... }:
{
home.packages = with pkgs; [
kitty
];
programs.kitty = {
enable = true;
settings = {
background_opacity = 0.6;
};
};
}