mirror of
https://github.com/Superredstone/nixos.git
synced 2026-03-07 20:28:08 +01:00
14 lines
190 B
Nix
14 lines
190 B
Nix
{ pkgs, config, ... }:
|
|
{
|
|
programs.kitty = {
|
|
enable = true;
|
|
settings = {
|
|
enable_audio_bell = false;
|
|
};
|
|
extraConfig = ''
|
|
background_opacity 0.9
|
|
background_blur 1
|
|
'';
|
|
};
|
|
}
|