blob: 461b901527f40d1e4769e49e7c3ccf3b89a96750 (
plain)
1
2
3
4
5
6
7
8
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 = [];
};
}
|