Changes
This commit is contained in:
parent
6f9fdca876
commit
5ad8529721
7 changed files with 118 additions and 2 deletions
17
modules/username.nix
Normal file
17
modules/username.nix
Normal 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; };
|
||||
};
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue