small change

This commit is contained in:
KoenDR06 2025-09-16 23:43:37 +02:00
parent 9c438fd83b
commit 5d6b87637d
2 changed files with 12 additions and 10 deletions

View file

@ -1,4 +1,9 @@
{...}: { {
lib,
...
}: let
inherit (lib) mkOption types;
in {
imports = [ imports = [
./apps ./apps
./hardware ./hardware
@ -10,4 +15,10 @@
./timers ./timers
./username.nix ./username.nix
]; ];
options = {
horseman = {
username = mkOption {type = types.str;};
};
};
} }

View file

@ -1,9 +0,0 @@
{lib, ...}: let
inherit (lib) mkOption types;
in {
options = {
horseman = {
username = mkOption {type = types.str;};
};
};
}