summaryrefslogtreecommitdiff
path: root/home-modules
diff options
context:
space:
mode:
authorJakub Stachurski <j.stachurski@student.utwente.nl>2025-09-29 22:25:08 +0200
committerJakub Stachurski <j.stachurski@student.utwente.nl>2025-09-29 22:25:08 +0200
commitdc44f954a0db4e484da80377f645d459fcf901dc (patch)
treec6f97827bcc6d43ce064aa5dfd1a892fa4b3b6a7 /home-modules
parent848c80ac1ae961eafc58967fb52405b8d0fbadde (diff)
Nom and fixed spotifyd
Diffstat (limited to 'home-modules')
-rw-r--r--home-modules/apps/default.nix8
1 files changed, 8 insertions, 0 deletions
diff --git a/home-modules/apps/default.nix b/home-modules/apps/default.nix
index 2abc4d1..751985b 100644
--- a/home-modules/apps/default.nix
+++ b/home-modules/apps/default.nix
@@ -51,6 +51,7 @@ in
(lib.mkIf cfg.base.enable {
home.packages = with pkgs; [
lm_sensors
+ nix-output-monitor
];
homeapps.zsh.enable = true;
homeapps.nvim.enable = true;
@@ -124,6 +125,13 @@ in
discovery = {
zeroconf_port = 5352;
};
+ audio = {
+ backend="pulse";
+ };
+ ## Fixes spotifyd for some reason
+ networking.hosts = {
+ "0.0.0.0" = ["apresolve.spotify.com"];
+ };
# FIXME: Add a hook for notifications
};
};