50 lines
875 B
Nix
50 lines
875 B
Nix
|
{ config, lib, pkgs, ... }:
|
||
|
|
||
|
with lib;
|
||
|
|
||
|
let
|
||
|
|
||
|
cfg = config.virtualisation.appvm;
|
||
|
|
||
|
in {
|
||
|
|
||
|
options = {
|
||
|
virtualisation.appvm = {
|
||
|
enable = mkOption {
|
||
|
type = types.bool;
|
||
|
default = false;
|
||
|
description = ''
|
||
|
This enables AppVMs and related virtualisation settings.
|
||
|
'';
|
||
|
};
|
||
|
user = mkOption {
|
||
|
type = types.str;
|
||
|
description = ''
|
||
|
AppVM user login. Currenly only AppVMs are supported for a single user only.
|
||
|
'';
|
||
|
};
|
||
|
};
|
||
|
|
||
|
};
|
||
|
|
||
|
config = mkIf cfg.enable {
|
||
|
virtualisation.libvirtd = {
|
||
|
enable = true;
|
||
|
qemu.verbatimConfig = ''
|
||
|
namespaces = []
|
||
|
user = "${cfg.user}"
|
||
|
group = "users"
|
||
|
remember_owner = 0
|
||
|
'';
|
||
|
};
|
||
|
|
||
|
users.users."${cfg.user}" = {
|
||
|
packages = [ pkgs.appvm ];
|
||
|
extraGroups = [ "libvirtd" ];
|
||
|
};
|
||
|
|
||
|
};
|
||
|
|
||
|
}
|
||
|
|