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

95 lines
2.4 KiB
Nix
Raw Normal View History

2025-01-01 17:29:54 -05:00
{ pkgs, inputs, ... }:
2024-11-30 22:11:40 -05:00
{
2025-01-01 17:36:49 -05:00
nixpkgs.overlays = import ../overlays.nix inputs;
2025-01-01 17:29:54 -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 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;
2025-01-01 17:26:36 -05:00
"rmpc".source = ../../configs/rmpc;
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 = {
2024-12-23 14:54:10 -05:00
fish = {
enable = true;
shellInit = ''
set -g fish_greeting
'';
};
2024-12-17 15:50:18 -05:00
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-29 23:00:40 -05:00
rofi = {
enable = true;
2024-12-29 23:25:46 -05:00
font = "Fira Code Light 11";
2024-12-30 16:43:58 -05:00
terminal = "kitty";
2024-12-29 23:00:40 -05:00
};
2024-12-20 17:01:09 -05:00
vscode = {
enable = true;
package = pkgs.vscodium;
extensions = with pkgs.vscode-extensions; [
editorconfig.editorconfig
jnoortheen.nix-ide
2024-12-20 18:14:38 -05:00
mesonbuild.mesonbuild
2024-12-20 17:01:09 -05:00
rust-lang.rust-analyzer
2024-12-20 17:18:45 -05:00
skellock.just
2024-12-20 17:01:09 -05:00
wakatime.vscode-wakatime
];
};
2024-12-17 15:50:18 -05:00
};
2024-12-09 17:15:24 -05:00
2024-12-30 16:43:58 -05:00
services = {
2024-12-30 22:17:54 -05:00
flameshot = {
enable = true;
settings = {
General = {
disabledTrayIcon = true;
showStartupLaunchMessage = false;
};
};
};
2024-12-31 05:11:58 -05:00
mpd = {
enable = true;
musicDirectory = "/mnt/world/music";
extraConfig = ''
audio_output {
type "pipewire"
name "main"
}
2025-01-01 00:26:26 -05:00
log_file "/tmp/mpd.log"
2024-12-31 05:11:58 -05:00
'';
};
2024-12-31 20:27:32 -05:00
mpdris2 = {
enable = true;
mpd.musicDirectory = "/mnt/world/music";
2024-12-31 23:10:34 -05:00
multimediaKeys = true;
notifications = true;
2024-12-31 20:27:32 -05:00
};
2024-12-30 16:43:58 -05:00
mpris-proxy.enable = true;
};
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
}