49 lines
717 B
Nix
49 lines
717 B
Nix
|
{ pkgs, ... }:
|
||
|
|
||
|
{
|
||
|
imports = [
|
||
|
./global
|
||
|
|
||
|
./features/desktop/common
|
||
|
./features/desktop/jade
|
||
|
|
||
|
./features/printing
|
||
|
./features/games
|
||
|
];
|
||
|
|
||
|
home = {
|
||
|
packages = with pkgs; [
|
||
|
spotify
|
||
|
jellyfin-media-player
|
||
|
firefox
|
||
|
pulsemixer
|
||
|
# Graphics
|
||
|
gimp
|
||
|
inkscape
|
||
|
krita
|
||
|
# Games
|
||
|
gamemode
|
||
|
protonup-ng
|
||
|
prismlauncher
|
||
|
runelite
|
||
|
# Hardware
|
||
|
libratbag
|
||
|
piper
|
||
|
];
|
||
|
persistence."/persist/home/sajenim" = {
|
||
|
directories = [
|
||
|
".mozilla"
|
||
|
".config/Yubico"
|
||
|
"Documents"
|
||
|
"Downloads"
|
||
|
"Games"
|
||
|
"Music"
|
||
|
"Pictures"
|
||
|
"Printer"
|
||
|
"Videos"
|
||
|
];
|
||
|
};
|
||
|
};
|
||
|
}
|
||
|
|