diff options
author | makefu <github@syntax-fehler.de> | 2018-09-08 12:46:25 +0200 |
---|---|---|
committer | makefu <github@syntax-fehler.de> | 2018-09-08 12:46:25 +0200 |
commit | 704fad65c3f53173571cb95d49f1b9fbdd29bb64 (patch) | |
tree | 250d68393700348764d17761192eabddc696e71c /makefu/3modules/state.nix | |
parent | 35cc31d3e478951e1c72126fc43c4209ebf70e00 (diff) |
ma state module: init
Diffstat (limited to 'makefu/3modules/state.nix')
-rw-r--r-- | makefu/3modules/state.nix | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/makefu/3modules/state.nix b/makefu/3modules/state.nix new file mode 100644 index 000000000..461b90152 --- /dev/null +++ b/makefu/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 = []; + }; +} |