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
2024-12-30 16:43:58 -05:00

65 lines
1.6 KiB
Nix

{ pkgs, ... }:
{
home = {
stateVersion = "24.11";
username = "rae";
homeDirectory = "/home/rae";
sessionVariables = {
BROWSER = "firefox";
TERM = "kitty";
};
file = {
".twmrc".source = ../../configs/twm;
".local/share/themes".source = ../../configs/openbox/themes;
};
};
xdg.configFile = {
"openbox".source = ../../configs/openbox;
};
programs = {
fish = {
enable = true;
shellInit = ''
set -g fish_greeting
'';
};
git = {
enable = true;
userName = "roxwize";
userEmail = "rae@roxwize.xyz";
};
kitty = {
enable = true;
font.name = "Fira Code";
themeFile = "mayukai";
};
rofi = {
enable = true;
font = "Fira Code Light 11";
terminal = "kitty";
};
vscode = {
enable = true;
package = pkgs.vscodium;
extensions = with pkgs.vscode-extensions; [
editorconfig.editorconfig
jnoortheen.nix-ide
mesonbuild.mesonbuild
rust-lang.rust-analyzer
skellock.just
wakatime.vscode-wakatime
];
};
};
services = {
mpris-proxy.enable = true;
};
gtk = {
enable = true;
cursorTheme.name = "Posy's Cursor";
theme.name = "io.elementary.stylesheet.blueberry";
};
}