small change
This commit is contained in:
parent
9c438fd83b
commit
5d6b87637d
2 changed files with 12 additions and 10 deletions
|
|
@ -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;};
|
||||||
|
};
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -1,9 +0,0 @@
|
||||||
{lib, ...}: let
|
|
||||||
inherit (lib) mkOption types;
|
|
||||||
in {
|
|
||||||
options = {
|
|
||||||
horseman = {
|
|
||||||
username = mkOption {type = types.str;};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
}
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue