Merge branch 'main' of ssh://code.8bitbuddhism.com/aires/nix-configuration
This commit is contained in:
commit
121d996287
|
@ -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";
|
||||
};
|
||||
|
|
|
@ -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";
|
||||
};
|
||||
|
|
|
@ -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";
|
||||
};
|
||||
|
|
|
@ -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";
|
||||
|
|
|
@ -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";
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue