7 lines
124 B
Nix
7 lines
124 B
Nix
{ config, options, lib, pkgs, ... }:
|
|
let
|
|
inherit (lib) mkIf mkEnableOption;
|
|
in
|
|
{
|
|
options.modules.virtualisation = {};
|
|
}
|