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 | |
parent | 35cc31d3e478951e1c72126fc43c4209ebf70e00 (diff) |
ma state module: init
Diffstat (limited to 'makefu')
-rw-r--r-- | makefu/3modules/default.nix | 1 | ||||
-rw-r--r-- | makefu/3modules/state.nix | 9 |
2 files changed, 10 insertions, 0 deletions
diff --git a/makefu/3modules/default.nix b/makefu/3modules/default.nix index fa4eb827c..f06ce3d53 100644 --- a/makefu/3modules/default.nix +++ b/makefu/3modules/default.nix @@ -2,6 +2,7 @@ _: { imports = [ + ./state.nix ./populate.nix ./awesome-extra.nix ./deluge.nix 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 = []; + }; +} |