dots/modules/nixos/bundles/desktop.nix
2025-09-17 11:25:35 +10:00

31 lines
549 B
Nix

{
config,
lib,
pkgs,
...
}:
let
feature = "desktop";
in
{
config = lib.mkIf config.${feature}.enable {
dev.enable = true;
pipewire.enable = true;
print-and-scan.enable = true;
environment.systemPackages = with pkgs; [
beeper
brave
calibre
cameractrls-gtk3
jellyfin-media-player
# TODO: break out into separate configuration module
onlyoffice-desktopeditors
sleek-todo
];
};
imports = [ ];
options.${feature}.enable = lib.mkEnableOption "enables ${feature}";
}