ma state module: init

This commit is contained in:
makefu 2018-09-08 12:46:25 +02:00
parent 35cc31d3e4
commit 704fad65c3
No known key found for this signature in database
GPG Key ID: 36F7711F3FC0F225
2 changed files with 10 additions and 0 deletions

View File

@ -2,6 +2,7 @@ _:
{ {
imports = [ imports = [
./state.nix
./populate.nix ./populate.nix
./awesome-extra.nix ./awesome-extra.nix
./deluge.nix ./deluge.nix

View File

@ -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 = [];
};
}