flake/modules/test/example.nix

7 lines
211 B
Nix
Raw Normal View History

2024-09-16 00:10:42 +02:00
{config, cfg, lib, ...}: {
#mod.desc = "an example";
options.networking.hostName = lib.mkOption { default = "nixos"; };
opt.name = lib.mkOption { default = "foo"; };
config.networking.hostName = cfg.name;
}