2024-01-21 21:01:42 +08:00
|
|
|
{ pkgs, ... }:
|
|
|
|
|
|
|
|
{
|
|
|
|
imports = [
|
|
|
|
./global
|
|
|
|
|
|
|
|
./features/desktop/common
|
|
|
|
./features/desktop/jade
|
|
|
|
|
|
|
|
./features/printing
|
|
|
|
./features/games
|
|
|
|
];
|
|
|
|
|
|
|
|
home = {
|
|
|
|
packages = with pkgs; [
|
|
|
|
# Graphics
|
|
|
|
gimp
|
|
|
|
inkscape
|
|
|
|
krita
|
|
|
|
# Games
|
|
|
|
gamemode
|
|
|
|
protonup-ng
|
|
|
|
prismlauncher
|
|
|
|
runelite
|
|
|
|
# Hardware
|
|
|
|
libratbag
|
|
|
|
piper
|
2024-01-22 20:00:20 +08:00
|
|
|
# Misc
|
|
|
|
spotify
|
|
|
|
jellyfin-media-player
|
|
|
|
firefox
|
|
|
|
pulsemixer
|
2024-01-21 21:01:42 +08:00
|
|
|
];
|
2024-01-22 20:00:20 +08:00
|
|
|
|
2024-01-21 21:01:42 +08:00
|
|
|
persistence."/persist/home/sajenim" = {
|
|
|
|
directories = [
|
|
|
|
".mozilla"
|
2024-01-23 09:46:37 +08:00
|
|
|
# Mutable configurations
|
2024-01-21 21:01:42 +08:00
|
|
|
".config/Yubico"
|
2024-01-23 09:46:37 +08:00
|
|
|
# Application specific data
|
|
|
|
".local/share/PrismLauncher"
|
2024-01-29 22:31:35 +08:00
|
|
|
".local/share/Jellyfin Media Player"
|
2024-01-23 09:46:37 +08:00
|
|
|
# Our user data
|
2024-01-21 21:01:42 +08:00
|
|
|
"Documents"
|
|
|
|
"Downloads"
|
|
|
|
"Games"
|
|
|
|
"Music"
|
|
|
|
"Pictures"
|
|
|
|
"Printer"
|
|
|
|
"Videos"
|
|
|
|
];
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|