dots/modules/nixos/bundles/gui.nix
wi11-holdsworth f2b6808c93 refactor: move graphical applications to a separate bundle
this facilitates lean clients, e.g. a laptop with only a virutal console
2026-01-06 13:29:42 +11:00

24 lines
373 B
Nix

{
# keep-sorted start
pkgs,
util,
# keep-sorted end
...
}:
{
imports = util.toImports ../features [
# keep-sorted start
"fonts"
# keep-sorted end
];
environment.systemPackages = with pkgs; [
# keep-sorted start
beeper
cameractrls-gtk3
jellyfin-desktop
onlyoffice-desktopeditors
textsnatcher
# keep-sorted end
];
}