mirror of
https://github.com/harryssecret/homelab-nix.git
synced 2025-01-18 21:29:33 +01:00
fixed bad nesting
This commit is contained in:
parent
8d45b9fe71
commit
5e13aac4cd
|
@ -5,8 +5,8 @@ let
|
||||||
cfg = config.containers;
|
cfg = config.containers;
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
options.containers = {
|
options = {
|
||||||
minecraft.path = mkOption {
|
containers.minecraft.path = mkOption {
|
||||||
type = types.str;
|
type = types.str;
|
||||||
default = "/srv/Minecraft";
|
default = "/srv/Minecraft";
|
||||||
};
|
};
|
||||||
|
|
|
@ -5,10 +5,12 @@ let
|
||||||
cfg = config.samba;
|
cfg = config.samba;
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
options.samba = {
|
options = {
|
||||||
dir = mkOption {
|
samba = {
|
||||||
type = types.str;
|
dir = mkOption {
|
||||||
default = "/srv/Multimedia";
|
type = types.str;
|
||||||
|
default = "/srv/Multimedia";
|
||||||
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
config = {
|
config = {
|
||||||
|
|
|
@ -5,10 +5,12 @@ let
|
||||||
cfg = config.transmission;
|
cfg = config.transmission;
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
options.transmission = {
|
options = {
|
||||||
directory = mkOption {
|
transmission = {
|
||||||
type = lib.types.str;
|
directory = mkOption {
|
||||||
default = "/srv/Multimedia";
|
type = lib.types.str;
|
||||||
|
default = "/srv/Multimedia";
|
||||||
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue