dotfiles.nix/home-manager/sajenim/fuchsia.nix
2024-09-30 09:22:07 +08:00

31 lines
439 B
Nix

{pkgs, ...}: {
imports = [
./global
./features/desktop
./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
# Unstable
unstable.immich-go
];
};
}