mirror of
https://github.com/ivabus/nixos
synced 2024-11-10 02:25:18 +03:00
Ivan Bushchik
4afe642684
NOTE: any config other than stella will not be working for a while Signed-off-by: Ivan Bushchik <ivabus@ivabus.dev>
14 lines
345 B
Nix
14 lines
345 B
Nix
{ pkgs, config, lib, ... }:
|
|
|
|
let
|
|
cfg = config.my.roles.virtualisation;
|
|
in {
|
|
options.my.roles.virtualisation.enable = lib.mkEnableOption "Enable tools for virtualisation";
|
|
config = lib.mkIf (cfg.enable) {
|
|
virtualisation.libvirtd.enable = true;
|
|
environment.systemPackages = with pkgs; [
|
|
qemu_full
|
|
qemu-utils
|
|
];
|
|
};
|
|
} |