nichts/modules/other/system.nix
Bloxx12 53aaa26fa1 flake: inherit explicitly from parts of lib
Instead of doing `inherit (lib) <something>``, all inherits now use
`inherit (lib.<subsystem>) <something>`, which is much nicer.
2025-04-09 16:13:31 +02:00

11 lines
223 B
Nix

{lib, ...}: let
inherit (lib.options) mkOption;
inherit (lib.types) str;
in {
options.modules.other.system = {
username = mkOption {
description = "username for this system";
type = str;
};
};
}