My Nix Configuration

[homes.pyrox] Remove unused services

Changed files
-43
homes
x86_64-linux
-8
homes/x86_64-linux/pyrox/services/emacs.nix
···
-
{programs, ...}: {
-
services.emacs = {
-
inherit (programs.emacs) package;
-
enable = true;
-
# package = programs.emacs.package;
-
socketActivation.enable = true;
-
};
-
}
···
-19
homes/x86_64-linux/pyrox/services/mpd.nix
···
-
{config, ...}: {
-
services.mpd = {
-
enable = true;
-
musicDirectory = "${config.home.homeDirectory}/Music";
-
extraConfig = ''
-
audio_output {
-
type "fifo"
-
name "viz"
-
path "/tmp/mpd.fifo"
-
format "44100:16:2"
-
buffer_time "100000"
-
}
-
audio_output {
-
type "pipewire"
-
name "PipeWire Sound Server"
-
}
-
'';
-
};
-
}
···
-16
homes/x86_64-linux/pyrox/services/pantalaimon.nix
···
-
{
-
services.pantalaimon = {
-
enable = true;
-
settings = {
-
Default = {
-
LogLevel = "Debug";
-
SSL = true;
-
};
-
thehedgeh0g = {
-
Homeserver = "https://colony.jupiterbroadcasting.com";
-
ListenAddress = "127.0.0.1";
-
ListenPort = 8008;
-
};
-
};
-
};
-
}
···