Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
55 lines
883 B
Nix
55 lines
883 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. Currently 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" ];
|
|
};
|
|
|
|
};
|
|
|
|
}
|