From 1a5bb813af01fca832b029e42e0faafd4b78aae4 Mon Sep 17 00:00:00 2001 From: Ulic-youthlic Date: Fri, 10 Jan 2025 18:50:57 +0800 Subject: [PATCH] move spotify installation to default.nix neither spotify.nix --- nixos/configurations/Tytonidae/default.nix | 2 +- nixos/configurations/Tytonidae/spotify.nix | 6 ------ 2 files changed, 1 insertion(+), 7 deletions(-) delete mode 100644 nixos/configurations/Tytonidae/spotify.nix diff --git a/nixos/configurations/Tytonidae/default.nix b/nixos/configurations/Tytonidae/default.nix index 7154c94..4794314 100644 --- a/nixos/configurations/Tytonidae/default.nix +++ b/nixos/configurations/Tytonidae/default.nix @@ -13,7 +13,6 @@ ./dae ./nh.nix ./steam.nix - ./spotify.nix # Include the hardware related config ./hardware-configuration.nix @@ -49,6 +48,7 @@ handbrake wechat-uos nvtopPackages.full + spotify ]; environment.variables.EDITOR = "hx"; diff --git a/nixos/configurations/Tytonidae/spotify.nix b/nixos/configurations/Tytonidae/spotify.nix deleted file mode 100644 index c2724d0..0000000 --- a/nixos/configurations/Tytonidae/spotify.nix +++ /dev/null @@ -1,6 +0,0 @@ -{ pkgs, ... }: -{ - environment.systemPackages = with pkgs; [ - spotify - ]; -}