change domain

This commit is contained in:
zack 2024-09-16 22:24:47 -04:00
parent 6a5d2b1dea
commit f9eb7e8a11
No known key found for this signature in database
GPG key ID: 5F873416BCF59F35
3 changed files with 24 additions and 1 deletions

View file

@ -0,0 +1,21 @@
{
lib,
config,
pkgs,
...
}:
with lib;
with lib.custom; let
cfg = config.services.music;
in {
options.services.music = with types; {
enable = mkBoolOpt false "Enable MPD (Music Player Daemon)";
};
config = mkIf cfg.enable {
services.mpd = {
enable = true;
musicDirectory = "/home/zoey/Music";
};
};
}

View file

@ -15,7 +15,7 @@ in {
options.sites.gitlab = with types; {
enable = mkBoolOpt false "Enable GitLab";
domain = mkStringOpt "git.zackster.zip" "Domain for GitLab";
domain = mkStringOpt "git.zoeys.computer" "Domain for GitLab";
};
config = mkIf cfg.enable {