refactor: migrate the rest of the configuration out of home-manager

This commit is contained in:
Youwen Wu 2024-08-03 18:40:48 -07:00
parent f829b8c108
commit 4bb597c38a
Signed by: youwen
GPG key ID: 865658ED1FE61EC3
4 changed files with 192 additions and 187 deletions

View file

@ -0,0 +1,26 @@
{
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;
};
};
}