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-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 = {
|
2024-12-23 19:54:10 +00:00
|
|
|
fish = {
|
|
|
|
enable = true;
|
|
|
|
shellInit = ''
|
|
|
|
set -g fish_greeting
|
|
|
|
'';
|
|
|
|
};
|
2024-12-17 20:50:18 +00:00
|
|
|
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-30 04:00:40 +00:00
|
|
|
rofi = {
|
|
|
|
enable = true;
|
2024-12-30 04:25:46 +00:00
|
|
|
font = "Fira Code Light 11";
|
2024-12-30 21:43:58 +00:00
|
|
|
terminal = "kitty";
|
2024-12-30 04:00:40 +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
|
2024-12-20 23:14:38 +00:00
|
|
|
mesonbuild.mesonbuild
|
2024-12-20 22:01:09 +00:00
|
|
|
rust-lang.rust-analyzer
|
2024-12-20 22:18:45 +00:00
|
|
|
skellock.just
|
2024-12-20 22:01:09 +00:00
|
|
|
wakatime.vscode-wakatime
|
|
|
|
];
|
|
|
|
};
|
2024-12-17 20:50:18 +00:00
|
|
|
};
|
2024-12-09 22:15:24 +00:00
|
|
|
|
2024-12-30 21:43:58 +00:00
|
|
|
services = {
|
2024-12-31 03:17:54 +00:00
|
|
|
flameshot = {
|
|
|
|
enable = true;
|
|
|
|
settings = {
|
|
|
|
General = {
|
|
|
|
disabledTrayIcon = true;
|
|
|
|
showStartupLaunchMessage = false;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
2024-12-31 10:11:58 +00:00
|
|
|
mpd = {
|
|
|
|
enable = true;
|
|
|
|
musicDirectory = "/mnt/world/music";
|
|
|
|
extraConfig = ''
|
|
|
|
audio_output {
|
|
|
|
type "pipewire"
|
|
|
|
name "main"
|
|
|
|
}
|
|
|
|
'';
|
|
|
|
};
|
2024-12-30 21:43:58 +00:00
|
|
|
mpris-proxy.enable = true;
|
|
|
|
};
|
|
|
|
|
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
|
|
|
}
|