aboutsummaryrefslogtreecommitdiff
path: root/void/home.nix
diff options
context:
space:
mode:
authorStefan Weigl-Bosker <stefan@s00.xyz>2025-03-05 15:05:06 -0500
committerStefan Weigl-Bosker <stefan@s00.xyz>2025-03-05 15:05:06 -0500
commitd345455cc91df176b2b1ec7d50e67967c3f18c0c (patch)
tree42630111a87f0e7a16166e89ecb7d11e44850ed3 /void/home.nix
parent26c2673b6923a1906c8c4cfcf70bd4c79916e417 (diff)
downloadhome-d345455cc91df176b2b1ec7d50e67967c3f18c0c.tar.gz
more improvements to service management
Diffstat (limited to 'void/home.nix')
-rw-r--r--void/home.nix6
1 files changed, 6 insertions, 0 deletions
diff --git a/void/home.nix b/void/home.nix
index 50fdb4a..482e31c 100644
--- a/void/home.nix
+++ b/void/home.nix
@@ -32,13 +32,19 @@
services = {
enable = true;
+ coreServices = ["dbus"];
services = {
"pipewire" = {
run = "${builtins.readFile ./services/pipewire/run}";
+ log = "${builtins.readFile ./services/pipewire/log/run}";
};
"mpd" = {
run = "${builtins.readFile ./services/mpd/run}";
};
+ "dbus" = {
+ run = "${builtins.readFile ./services/dbus/run}";
+ log = "${builtins.readFile ./services/dbus/log/run}";
+ };
};
};
};