From 4f8ae465bdf4accc9d8b42ff9599f4b2a9ef3e9e Mon Sep 17 00:00:00 2001 From: makefu Date: Sat, 8 Sep 2018 12:46:25 +0200 Subject: ma state module: init --- 3modules/state.nix | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 3modules/state.nix (limited to '3modules/state.nix') diff --git a/3modules/state.nix b/3modules/state.nix new file mode 100644 index 000000000..461b90152 --- /dev/null +++ b/3modules/state.nix @@ -0,0 +1,9 @@ +{config, lib, pkgs, ... }: + +{ + options.state = lib.mkOption { + type = lib.types.listOf lib.types.str; + description = "state which is currently scattered on the machine"; + default = []; + }; +} -- cgit v1.2.3