1
0
Fork 0

Merge branch 'main' of ssh://code.8bitbuddhism.com/aires/nix-configuration

This commit is contained in:
Aires 2024-09-07 14:38:43 -04:00
commit 121d996287
5 changed files with 5 additions and 5 deletions

View file

@ -12,7 +12,7 @@ in
aux.system.services.airsonic = {
enable = lib.mkEnableOption (lib.mdDoc "Enables Airsonic Advanced media streaming service.");
home = lib.mkOption {
default = "";
default = "/var/lib/airsonic";
type = lib.types.str;
description = "Where to store Airsonic's files";
};

View file

@ -9,7 +9,7 @@ in
aux.system.services.deluge = {
enable = lib.mkEnableOption "Enables Deluge.";
home = lib.mkOption {
default = "";
default = "/var/lib/deluge";
type = lib.types.str;
description = "Where to store Deluge's files";
};

View file

@ -14,7 +14,7 @@ in
aux.system.services.duplicacy-web = {
enable = lib.mkEnableOption "Enables duplicacy-web";
home = lib.mkOption {
default = "";
default = "/var/lib/duplicacy-web";
type = lib.types.str;
description = "Environment where duplicacy-web stores its config files";
};

View file

@ -26,7 +26,7 @@ in
aux.system.services.forgejo = {
enable = lib.mkEnableOption (lib.mdDoc "Enables Forgejo Git hosting service.");
domain = lib.mkOption {
default = "";
default = "/var/lib/forgejo";
type = lib.types.str;
description = "The root domain that Forgejo will be hosted on.";
example = "example.com";

View file

@ -16,7 +16,7 @@ in
aux.system.services.jellyfin = {
enable = lib.mkEnableOption (lib.mdDoc "Enables the Jellyfin media streaming service.");
home = lib.mkOption {
default = "";
default = "/var/lib/jellyfin";
type = lib.types.str;
description = "Where to store Jellyfin's files";
};