flake+
This commit is contained in:
parent
08664b4309
commit
6d8767d93b
12
flake.nix
12
flake.nix
|
@ -30,6 +30,9 @@
|
|||
with pkgs; {
|
||||
formatter = alejandra;
|
||||
defaultPackage = pkgs.callPackage ./. {};
|
||||
}
|
||||
)
|
||||
// flake-utils.lib.eachDefaultSystemPassThrough (system: {
|
||||
nixosModules.default = {
|
||||
config,
|
||||
lib,
|
||||
|
@ -42,9 +45,11 @@
|
|||
type = lib.types.string;
|
||||
description = "The webhook to post the messages to";
|
||||
};
|
||||
users = lib.mkOption {
|
||||
users =
|
||||
lib.mkOption {
|
||||
type = lib.types.listOf lib.types.attrs;
|
||||
} // {
|
||||
}
|
||||
// {
|
||||
name = lib.mkOption {
|
||||
type = lib.types.string;
|
||||
};
|
||||
|
@ -73,6 +78,5 @@
|
|||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
);
|
||||
});
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue