infra/nix/os/profiles/removable-medium/system.nix

16 lines
209 B
Nix

{ config, lib, pkgs, ... }:
let
in {
services.printing = {
enable = false;
};
virtualisation = {
libvirtd.enable = false;
virtualbox.host.enable = false;
docker.enable = true;
};
}