dotfiles.nix/home-manager/sajenim/fuchsia.nix

49 lines
717 B
Nix
Raw Normal View History

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; [
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"
];
};
};
}