diff options
| author | Mike Vink <ivi@vinkies.net> | 2024-02-07 00:15:11 +0100 |
|---|---|---|
| committer | Mike Vink <ivi@vinkies.net> | 2024-02-07 00:15:11 +0100 |
| commit | b34079150f0d1842e013c414c7a97607c7ecb1c3 (patch) | |
| tree | 7404d95bc3c013fb98379df9e3aff962671243dd /ivi | |
| parent | 19c53f08b2476d2e3d0cdb506a3896f6f9738a68 (diff) | |
macos patch
Diffstat (limited to 'ivi')
| -rw-r--r-- | ivi/ivi.nix | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/ivi/ivi.nix b/ivi/ivi.nix index d5a4fc7..973992d 100644 --- a/ivi/ivi.nix +++ b/ivi/ivi.nix @@ -48,6 +48,11 @@ self: lib: with lib; let type = bool; default = false; }; + isDarwin = mkOption { + description = "The machine is a fake machine"; + type = bool; + default = false; + }; tailnet = mkOption { type = with types; attrsOf (submodule ({ name, config, ... }: { freeformType = attrs; @@ -92,6 +97,13 @@ self: lib: with lib; let ]; machines = { + work = { + isFake = true; + isDarwin = true; + profiles = [ + "core" + ]; + }; wsl = { isFake = true; profiles = [ |
