10 lines
202 B
Nix
10 lines
202 B
Nix
|
{config, lib, pkgs, ... }:
|
||
|
|
||
|
{
|
||
|
options.state = lib.mkOption {
|
||
|
type = lib.types.listOf lib.types.str;
|
||
|
description = "state which is currently scattered on the machine";
|
||
|
default = [];
|
||
|
};
|
||
|
}
|