dotfiles.nix/home-manager/sajenim/fuchsia.nix
2024-07-26 09:27:01 +08:00

58 lines
965 B
Nix

{ pkgs, ... }:
{
imports = [
./global
./features/desktop/common
./features/desktop/jade
./features/printing
./features/games
];
home = {
packages = with pkgs; [
# Graphics
gimp
inkscape
krita
# Hardware
openrgb
libratbag
piper
pulsemixer
# Media
mpc-cli
ncmpcpp
jellyfin-media-player
# Misc
firefox
];
persistence."/persist/home/sajenim" = {
directories = [
".mozilla"
# Hidden user data
".repositories"
".print"
# Mutable configurations
".config/htop"
".config/lazygit"
".config/Yubico"
# Application specific data
".local/share/PrismLauncher"
".local/share/Jellyfin Media Player"
# Our user data
"Documents"
"Downloads"
"Games"
"Music"
"Pictures"
"Videos"
];
};
};
}