Migrated from import based to config based
This commit is contained in:
27
modules/system/services/quickemu.nix
Normal file
27
modules/system/services/quickemu.nix
Normal file
@@ -0,0 +1,27 @@
|
||||
{ pkgs, config, lib, ... }:
|
||||
|
||||
with lib;
|
||||
|
||||
let
|
||||
cfg = config.settings.services.quickemu;
|
||||
in {
|
||||
options = {
|
||||
settings.services.quickemu.enable = lib.mkOption {
|
||||
type = lib.types.bool;
|
||||
description = ''
|
||||
Enable quickemu virtualisation
|
||||
'';
|
||||
};
|
||||
};
|
||||
|
||||
config = mkIf cfg.enable {
|
||||
virtualisation.libvirtd.enable = true;
|
||||
programs.virt-manager.enable = true;
|
||||
|
||||
users.users.xeovalyte.extraGroups = [ "libvirtd" ];
|
||||
|
||||
environment.systemPackages = with pkgs; [
|
||||
quickemu
|
||||
];
|
||||
};
|
||||
}
|
Reference in New Issue
Block a user