1
1
Fork 1
mirror of https://github.com/oddlama/nixos-extra-modules.git synced 2025-10-11 06:10:39 +02:00

feat: upstream node generation

This commit is contained in:
Patrick 2025-02-06 21:14:42 +01:00
parent f1a3f0303b
commit 93b08971cf
No known key found for this signature in database
GPG key ID: 451F95EFB8BECD0F
9 changed files with 268 additions and 48 deletions

9
modules/globals.nix Normal file
View file

@ -0,0 +1,9 @@
{ lib, options, ... }:
{
options._globalsDefs = lib.mkOption {
type = lib.types.unspecified;
default = options.globals.definitions;
readOnly = true;
internal = true;
};
}