From 3649c233b73d03370779a8f58c6613a412979e8b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Karel=20Ko=C4=8D=C3=AD?= Date: Mon, 8 Aug 2022 10:13:19 +0200 Subject: Improve devices and few more machines --- nixos/machine/adm-mpd.nix | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) (limited to 'nixos/machine/adm-mpd.nix') diff --git a/nixos/machine/adm-mpd.nix b/nixos/machine/adm-mpd.nix index 3e103e1..aa85445 100644 --- a/nixos/machine/adm-mpd.nix +++ b/nixos/machine/adm-mpd.nix @@ -5,6 +5,7 @@ with lib; { config = { + fileSystems = { "/" = { device = "/dev/mmcblk0p2"; @@ -18,6 +19,35 @@ with lib; device = "/dev/mmcblk0p1"; }; }; + + networking.wireless = { + enable = true; + networks = filterAttrs (n: v: n == "Nela") config.secrets.wifiNetworks; + environmentFile = "/run/secrets/wifi.env"; + userControlled.enable = true; + }; + + services.pipewire = { + enable = true; + alsa.enable = true; + pulse.enable = true; + }; + + services.spotifyd = { + enable = true; + settings.global = { + device_name = "Adámkovi"; + device = "sysdefault"; + mixer = "Master"; + bitrate = 320; + cache_path = "/var/cahe/spotify"; + no_audio_cache = true; + volume_normalisation = true; + normalisation_pregain = -10; + initial_volume = 60; + }; + }; + }; } -- cgit v1.2.3