nix-config/home-manager/sajenim/fuchsia.nix
2025-03-06 16:41:45 +08:00

27 lines
389 B
Nix

{pkgs, ...}: {
imports = [
./global
./features/cli
./features/desktop
./features/editors
./features/games
./features/printing
./features/university
];
home = {
packages = with pkgs; [
# Graphics
gimp
# Hardware
piper
pulsemixer
# Multimedia
mpc-cli
ncmpcpp
# Browsers
firefox
];
};
}