dotfiles.nix/home-manager/sajenim/fuchsia.nix
2024-01-29 22:31:35 +08:00

56 lines
906 B
Nix

{ 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
# Misc
spotify
jellyfin-media-player
firefox
pulsemixer
];
persistence."/persist/home/sajenim" = {
directories = [
".mozilla"
# Mutable configurations
".config/Yubico"
# Application specific data
".local/share/PrismLauncher"
".local/share/Jellyfin Media Player"
# Our user data
"Documents"
"Downloads"
"Games"
"Music"
"Pictures"
"Printer"
"Videos"
];
};
};
}