7850408607
with zfs Note: this is probably the first commit with coq-nvim working again, don't remove uder any circumstances
15 lines
172 B
Nix
15 lines
172 B
Nix
{ pkgs, ... }:
|
|
{
|
|
home.packages = with pkgs; [
|
|
kitty
|
|
];
|
|
programs.kitty = {
|
|
enable = true;
|
|
settings = {
|
|
background_opacity = 0.6;
|
|
};
|
|
};
|
|
|
|
}
|
|
|