diff options
Diffstat (limited to 'ops/nixos/default.nix')
-rw-r--r-- | ops/nixos/default.nix | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/ops/nixos/default.nix b/ops/nixos/default.nix new file mode 100644 index 000000000000..a0d7630d00e0 --- /dev/null +++ b/ops/nixos/default.nix @@ -0,0 +1,13 @@ +# Most of the Nix expressions in this folder are NixOS modules, which +# are not readTree compatible. +# +# Some things (such as system configurations) are, and we import them +# here manually. +# +# TODO(tazjin): Find a more elegant solution for the whole module +# situation. +{ ... }@args: + +{ + whitby = import ./whitby/default.nix args; +} |