From c1893dd3888395a4a29ffc7f8f94f07d806327dc Mon Sep 17 00:00:00 2001 From: Lukas Wurzinger Date: Tue, 1 Jul 2025 22:35:15 +0200 Subject: [PATCH] fixes --- profiles/desktop/spotify.nix | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 profiles/desktop/spotify.nix diff --git a/profiles/desktop/spotify.nix b/profiles/desktop/spotify.nix new file mode 100644 index 0000000..fe6ef29 --- /dev/null +++ b/profiles/desktop/spotify.nix @@ -0,0 +1,16 @@ +{ + config, + lib, + pkgs, + ... +}: +let + cfg = config.profiles.desktop; +in +{ + config = lib.mkIf cfg.enable { + environment.systemPackages = [ + pkgs.spotify + ]; + }; +}