Files
gooberos/modules/school/default.nix
2026-04-01 15:04:14 +02:00

20 lines
351 B
Nix

{ pkgs, ... }:
{
imports = [
./cups.nix
];
environment.systemPackages = with pkgs; [
anydesk
openboard
trilium-desktop
libreoffice-qt-fresh
];
virtualisation.virtualbox.host = {
enable = true;
};
# Zen Browser configuration
home-manager.sharedModules = [./home.nix];
}