ma state module: init

This commit is contained in:
makefu 2018-09-08 12:46:25 +02:00
parent c3a19f0af6
commit 4f8ae465bd
2 changed files with 10 additions and 0 deletions

View file

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

9
3modules/state.nix Normal file
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 = [];
};
}