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

91 lines
2.3 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 = {
flameshot = {
enable = true;
settings = {
General = {
disabledTrayIcon = true;
showStartupLaunchMessage = false;
};
};
};
mpd = {
enable = true;
musicDirectory = "/mnt/world/music";
extraConfig = ''
audio_output {
type "pipewire"
name "main"
}
log_file "/tmp/mpd.log"
'';
};
mpdris2 = {
enable = true;
mpd.musicDirectory = "/mnt/world/music";
multimediaKeys = true;
notifications = true;
};
mpris-proxy.enable = true;
};
gtk = {
enable = true;
cursorTheme.name = "Posy's Cursor";
theme.name = "io.elementary.stylesheet.blueberry";
};
}