nix-config/modules/username.nix
2025-02-27 16:59:02 +01:00

17 lines
237 B
Nix

{
inputs,
outputs,
lib,
config,
pkgs,
...
}: let
inherit (lib) mkEnableOption mkIf mkOption types;
cfg = config.horseman;
in {
options = {
horseman = {
username = mkOption { type = types.str; };
};
};
}