refactor: move home-manager configuration to users dir

This commit is contained in:
Youwen Wu 2024-08-07 00:49:16 -07:00
parent d7373ba537
commit ee4c922eb2
12 changed files with 66 additions and 33 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;
};
};
}