1
0
Fork 0
mirror of https://git.sr.ht/~roxwize/.dotfiles synced 2025-01-31 15:03:37 +00:00
.dotfiles/nixos/home/base.nix

58 lines
1.5 KiB
Nix
Raw Normal View History

2024-12-20 22:01:09 +00:00
{ pkgs, ... }:
2024-12-01 03:11:40 +00:00
{
2024-12-17 20:50:18 +00:00
home = {
stateVersion = "24.11";
2024-12-17 22:06:47 +00:00
username = "rae";
2024-12-18 00:32:03 +00:00
homeDirectory = "/home/rae";
2024-12-17 20:50:18 +00:00
sessionVariables = {
BROWSER = "firefox";
TERM = "kitty";
2024-12-01 04:08:16 +00:00
};
2024-12-17 20:50:18 +00:00
file = {
2024-12-19 05:19:35 +00:00
".e16/backgrounds" = {
2024-12-20 03:12:03 +00:00
source = ../../assets/wallpapers;
2024-12-19 04:13:58 +00:00
recursive = true;
};
2024-12-19 05:19:35 +00:00
".e16/themes" = {
2024-12-20 03:12:03 +00:00
source = ../../assets/e16-themes;
2024-12-19 05:19:35 +00:00
recursive = true;
};
2024-12-20 03:12:03 +00:00
".twmrc".source = ../../configs/twm;
".local/share/themes".source = ../../configs/openbox/themes;
2024-12-11 13:56:37 +00:00
};
2024-12-17 20:50:18 +00:00
};
xdg.configFile = {
2024-12-20 03:12:03 +00:00
"openbox".source = ../../configs/openbox;
2024-12-17 20:50:18 +00:00
};
2024-12-01 03:11:40 +00:00
2024-12-17 20:50:18 +00:00
programs = {
git = {
enable = true;
userName = "roxwize";
userEmail = "rae@roxwize.xyz";
};
kitty = {
enable = true;
font.name = "Fira Code";
2024-12-18 00:47:47 +00:00
themeFile = "mayukai";
2024-12-17 20:50:18 +00:00
};
2024-12-20 22:01:09 +00:00
vscode = {
enable = true;
package = pkgs.vscodium;
extensions = with pkgs.vscode-extensions; [
editorconfig.editorconfig
jnoortheen.nix-ide
redhat.vscode-xml
rust-lang.rust-analyzer
wakatime.vscode-wakatime
];
};
2024-12-17 20:50:18 +00:00
};
2024-12-09 22:15:24 +00:00
2024-12-17 21:16:35 +00:00
gtk = {
enable = true;
cursorTheme.name = "Posy's Cursor";
theme.name = "io.elementary.stylesheet.blueberry";
};
2024-12-01 03:44:05 +00:00
}