nix-config/home-manager/sajenim/fuchsia.nix
2025-02-26 00:23:03 +08:00

26 lines
471 B
Nix

{pkgs, ...}: {
imports = [
./global
./features/cli
./features/desktop
./features/editors
./features/games
./features/printing
];
home = {
packages = with pkgs; [
# Graphics
gimp inkscape krita
# Hardware
libratbag piper pulsemixer
# Media
mpc-cli ncmpcpp jellyfin-media-player
# Browsers
firefox google-chrome
# University
libreoffice calibre x2goclient zoom-us
];
};
}