modules.settings: add mine.settings to pass data around

This commit is contained in:
eyjhb 2024-08-11 14:21:17 +02:00
parent 17e27d6945
commit a7f869923f
No known key found for this signature in database
GPG key ID: 609F508E3239F920
2 changed files with 10 additions and 0 deletions

View file

@ -1,5 +1,7 @@
{
imports = [
./settings.nix
./zrepl.nix
./disko.nix
./state.nix

View file

@ -0,0 +1,8 @@
{ lib, ... }:
{
options.mine.settings = lib.mkOption {
type = lib.types.attrsOf lib.types.anything;
default = {};
};
}