f81c763c1d
Co-authored-by: Mikhail Klementev <blame@dumpstack.io> Co-authored-by: Cabia Rangris <me@cab404.ru>
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" ];
|
|
};
|
|
|
|
};
|
|
|
|
}
|
|
|