From 5e9cc7ce3440be9ce6aeeaedcc70db9c80489c5f Mon Sep 17 00:00:00 2001 From: Niklas Gollenstede Date: Mon, 9 May 2022 13:13:14 +0200 Subject: [PATCH] add default config --- example/defaultConfig/flake.nix | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 example/defaultConfig/flake.nix diff --git a/example/defaultConfig/flake.nix b/example/defaultConfig/flake.nix new file mode 100644 index 0000000..a3784d9 --- /dev/null +++ b/example/defaultConfig/flake.nix @@ -0,0 +1,5 @@ +# The default »config« of . +# (Not a convention-conformant flake, just a workaround to supply configuration to a flake as a flake input.) +{ outputs = { ... }: { + prefix = "wip"; # The prefix to define NixOS configuration options as. +}; }