1
0
Fork 0
mirror of https://git.sr.ht/~roxwize/.dotfiles synced 2025-03-03 19:32:09 +00:00
.dotfiles/nixos/home/base.nix

47 lines
1.1 KiB
Nix
Raw Normal View History

2024-12-19 22:52:48 -05:00
{ ... }:
2024-11-30 22:11:40 -05:00
{
2024-12-17 15:50:18 -05:00
home = {
stateVersion = "24.11";
2024-12-17 17:06:47 -05:00
username = "rae";
2024-12-17 19:32:03 -05:00
homeDirectory = "/home/rae";
2024-12-17 15:50:18 -05:00
sessionVariables = {
BROWSER = "firefox";
TERM = "kitty";
2024-11-30 23:08:16 -05:00
};
2024-12-17 15:50:18 -05:00
file = {
2024-12-19 00:19:35 -05:00
".e16/backgrounds" = {
2024-12-19 22:12:03 -05:00
source = ../../assets/wallpapers;
2024-12-18 23:13:58 -05:00
recursive = true;
};
2024-12-19 00:19:35 -05:00
".e16/themes" = {
2024-12-19 22:12:03 -05:00
source = ../../assets/e16-themes;
2024-12-19 00:19:35 -05:00
recursive = true;
};
2024-12-19 22:12:03 -05:00
".twmrc".source = ../../configs/twm;
".local/share/themes".source = ../../configs/openbox/themes;
2024-12-11 08:56:37 -05:00
};
2024-12-17 15:50:18 -05:00
};
xdg.configFile = {
2024-12-19 22:12:03 -05:00
"openbox".source = ../../configs/openbox;
2024-12-17 15:50:18 -05:00
};
2024-11-30 22:11:40 -05:00
2024-12-17 15:50:18 -05:00
programs = {
git = {
enable = true;
userName = "roxwize";
userEmail = "rae@roxwize.xyz";
};
kitty = {
enable = true;
font.name = "Fira Code";
2024-12-17 19:47:47 -05:00
themeFile = "mayukai";
2024-12-17 15:50:18 -05:00
};
};
2024-12-09 17:15:24 -05:00
2024-12-17 16:16:35 -05:00
gtk = {
enable = true;
cursorTheme.name = "Posy's Cursor";
theme.name = "io.elementary.stylesheet.blueberry";
};
2024-11-30 22:44:05 -05:00
}