Files
NixConfig/mods/nixos/nixos.nix
T
2026-05-16 02:04:06 -03:00

15 lines
319 B
Nix

{ lib, ... }:
{
imports = [
./nixos/netbird/netbird.nix
];
options.mods = {
flakePath = lib.mkOption {
type = lib.types.str;
default = lib.mkError "Option 'mods.flakePath' must be explicitly set.";
description = "The absolute path of this flake. Must be explicitly set.";
};
};
}