Files

20 lines
351 B
Nix
Raw Permalink Normal View History

2026-03-30 00:20:36 +02:00
{ pkgs, ... }:
{
imports = [
./cups.nix
];
environment.systemPackages = with pkgs; [
anydesk
openboard
trilium-desktop
2026-04-01 15:04:14 +02:00
libreoffice-qt-fresh
2026-03-30 00:20:36 +02:00
];
virtualisation.virtualbox.host = {
enable = true;
};
# Zen Browser configuration
home-manager.sharedModules = [./home.nix];
}