mirror of
https://github.com/librephoenix/nixos-config
synced 2025-01-19 15:15:52 +05:30
12 lines
173 B
Nix
12 lines
173 B
Nix
|
{ config, pkgs, ... }:
|
||
|
|
||
|
{
|
||
|
home.packages = with pkgs; [
|
||
|
kitty
|
||
|
];
|
||
|
programs.kitty.enable = true;
|
||
|
programs.kitty.settings = {
|
||
|
background_opacity = "0.9";
|
||
|
};
|
||
|
}
|