ma state module: init
This commit is contained in:
parent
c3a19f0af6
commit
4f8ae465bd
|
@ -2,6 +2,7 @@ _:
|
|||
|
||||
{
|
||||
imports = [
|
||||
./state.nix
|
||||
./populate.nix
|
||||
./awesome-extra.nix
|
||||
./deluge.nix
|
||||
|
|
9
3modules/state.nix
Normal file
9
3modules/state.nix
Normal 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 = [];
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue