initial setup with impermanence

This commit is contained in:
2025-06-07 16:05:38 +03:00
commit 86b4fcd2fc
19 changed files with 700 additions and 0 deletions
+7
View File
@@ -0,0 +1,7 @@
{ ... }:
{
imports = [
../home.nix
./mpd.nix
];
}
+14
View File
@@ -0,0 +1,14 @@
{ config, pkgs, ... }:
{
services.mpd = {
enable = true;
musicDirectory = /vol/Trash/Music;
network.listenAddress = "any";
extraConfig = ''
audio_output {
type "pipewire"
name "PipeWire Sound Server"
}
'';
};
}