stockholm/makefu/3modules/state.nix

10 lines
202 B
Nix
Raw Normal View History

2018-09-08 10:46:25 +00:00
{config, lib, pkgs, ... }:
{
options.state = lib.mkOption {
type = lib.types.listOf lib.types.str;
description = "state which is currently scattered on the machine";
default = [];
};
}