mirror of
https://github.com/youwen5/nixos.git
synced 2024-11-24 17:53:51 -08:00
26 lines
635 B
Nix
26 lines
635 B
Nix
{
|
|
programs.kitty = {
|
|
enable = true;
|
|
theme = "Tokyo Night";
|
|
font.name = "CaskaydiaCove Nerd Font";
|
|
settings = {
|
|
font_size = 12;
|
|
window_padding_width = "8 8 0";
|
|
confirm_os_window_close = -1;
|
|
shell_integration = "enabled";
|
|
enable_audio_bell = "no";
|
|
background_opacity = "0.8";
|
|
};
|
|
};
|
|
|
|
programs.librewolf = {
|
|
enable = true;
|
|
settings = {
|
|
"webgl.disabled" = false;
|
|
"privacy.resistFingerprinting" = false;
|
|
"privacy.clearOnShutdown.history" = false;
|
|
"privacy.clearOnShutdown.cookies" = false;
|
|
"network.cookie.lifetimePolicy" = 0;
|
|
};
|
|
};
|
|
}
|