11 lines
204 B
Nix
11 lines
204 B
Nix
{ lib, config, ... }:
|
|
{
|
|
home-manager.users.willifan = {
|
|
programs.kitty = lib.mkIf config.desktop.kitty.enable {
|
|
enable = true;
|
|
settings = {
|
|
enable_audio_bell = false;
|
|
};
|
|
};
|
|
};
|
|
}
|