aboutsummaryrefslogtreecommitdiff
path: root/nixos/configurations/adm-mpd.nix
diff options
context:
space:
mode:
authorKarel Kočí <cynerd@email.cz>2026-09-23 08:09:45 +0200
committerKarel Kočí <cynerd@email.cz>2026-09-23 08:09:45 +0200
commitc42de3037ec406fa834c6c1756a6f0b70dcdd38f (patch)
tree0d195492fc3f24c9742567f5bff8c157ec72baa0 /nixos/configurations/adm-mpd.nix
parentb0af9c76e1687f2afad15ba7a0de1d24331868c8 (diff)
downloadnixos-personal-c42de3037ec406fa834c6c1756a6f0b70dcdd38f.tar.gz
nixos-personal-c42de3037ec406fa834c6c1756a6f0b70dcdd38f.tar.bz2
nixos-personal-c42de3037ec406fa834c6c1756a6f0b70dcdd38f.zip
treewise: cleanup and general updateHEADmaster
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;
- # };
- #};
-}