From 62dd3fdc3cda84b0eab6e59672ca97db2806e3b7 Mon Sep 17 00:00:00 2001 From: Vincent Ambo Date: Thu, 2 Jul 2020 19:19:08 +0100 Subject: feat(nixos/whitby): Hello, World! This adds NixOS configuration for the machine whitby.tvl.fyi. No interesting services are configured yet, so this configuration is quite plain. Change-Id: I67b7c75ebd6e298719b52e6b3bd83cc3be3c45d8 Reviewed-on: https://cl.tvl.fyi/c/depot/+/843 Tested-by: BuildkiteCI Reviewed-by: BuildkiteCI Reviewed-by: isomer Reviewed-by: lukegb --- ops/nixos/default.nix | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 ops/nixos/default.nix (limited to 'ops/nixos/default.nix') diff --git a/ops/nixos/default.nix b/ops/nixos/default.nix new file mode 100644 index 0000000000..a0d7630d00 --- /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; +} -- cgit 1.4.1