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

17 lines
209 B
Nix
Raw Normal View History

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