diff options
author | lassulus <lass@blue.r> | 2018-09-08 12:59:45 +0200 |
---|---|---|
committer | lassulus <lass@blue.r> | 2018-09-08 12:59:45 +0200 |
commit | 8639e4008a34e5e7d68202a621ef8c95fe3087f4 (patch) | |
tree | 730338125b0b095bd633aabeb67a832ff1b8f5b5 /makefu/3modules/state.nix | |
parent | 68bf23466fcaf91df0f11ba0828ef41fc9f694bf (diff) | |
parent | b4c96ad61109ac59fb90546d104aaeb7ac273c84 (diff) |
Merge remote-tracking branch 'gum/master' into test
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 = []; + }; +} |