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

@ -38,6 +38,7 @@
rice.gtk.enable = true; rice.gtk.enable = true;
services.lock.enable = true; services.lock.enable = true;
services.music.enable = true;
xdg.enable = true; xdg.enable = true;
@ -99,6 +100,7 @@
pkgs.parsec-bin pkgs.parsec-bin
pkgs.filezilla pkgs.filezilla
lib.custom.pkgs-unstable.zed-editor lib.custom.pkgs-unstable.zed-editor
lib.custom.pkgs-unstable.rmpc
pkgs.openvpn pkgs.openvpn
pkgs.telegram-desktop pkgs.telegram-desktop
pkgs.linux-manual pkgs.linux-manual

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; { options.sites.gitlab = with types; {
enable = mkBoolOpt false "Enable GitLab"; 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 { config = mkIf cfg.enable {