stockholm/makefu/3modules/state.nix
2018-09-08 12:46:25 +02:00

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 = [];
};
}