This commit is contained in:
KoenDR06 2025-02-27 16:59:02 +01:00
parent 6f9fdca876
commit 5ad8529721
7 changed files with 118 additions and 2 deletions

17
modules/username.nix Normal file
View file

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