aboutsummaryrefslogtreecommitdiff
path: root/nixos/configurations/adm-mpd.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixos/configurations/adm-mpd.nix')
-rw-r--r--nixos/configurations/adm-mpd.nix48
1 files changed, 0 insertions, 48 deletions
diff --git a/nixos/configurations/adm-mpd.nix b/nixos/configurations/adm-mpd.nix
deleted file mode 100644
index 47ac008..0000000
--- a/nixos/configurations/adm-mpd.nix
+++ /dev/null
@@ -1,48 +0,0 @@
-{
- config,
- lib,
- ...
-}: let
- inherit (lib) filterAttrs;
-in {
- system.stateVersion = "24.05";
-
- cynerd.rpi = 3;
- deploy = {
- enable = true;
- ssh.host = "nixos@mpd.adm";
- };
-
- networking.wireless = {
- enable = true;
- networks = filterAttrs (n: _: n == "Nela") config.secrets.wifiNetworks;
- secretsFile = "/run/secrets/wifi.secrets";
- userControlled.enable = true;
- };
-
- #services.pipewire = {
- #enable = true;
- #alsa.enable = true;
- #pulse.enable = true;
- #};
- #hardware.pulseaudio = {
- # enable = true;
- # systemWide = true;
- # zeroconf.publish.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;
- # };
- #};
-}