nixos-config/3modules/state.nix

10 lines
202 B
Nix
Raw Normal View History

2018-09-08 12:46:25 +02: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 = [];
};
}