From 4d1b839fa90af1774f0fc452647e5aac2ccb6e28 Mon Sep 17 00:00:00 2001 From: Adithya Nair Date: Fri, 21 Jul 2023 00:39:55 +0530 Subject: [PATCH] remove specializations --- hosts/skipper/default.nix | 1 - hosts/skipper/specialisations.nix | 22 ---------------------- 2 files changed, 23 deletions(-) delete mode 100644 hosts/skipper/specialisations.nix diff --git a/hosts/skipper/default.nix b/hosts/skipper/default.nix index ce69fa1..ea4b0dc 100644 --- a/hosts/skipper/default.nix +++ b/hosts/skipper/default.nix @@ -9,7 +9,6 @@ ./rollback.nix ./secureboot.nix ./security.nix - ./specialisations.nix ./virtualisation.nix ]; diff --git a/hosts/skipper/specialisations.nix b/hosts/skipper/specialisations.nix deleted file mode 100644 index a965039..0000000 --- a/hosts/skipper/specialisations.nix +++ /dev/null @@ -1,22 +0,0 @@ -{ - lib, - pkgs, - ... -}: { - specialisation = { - xanmod = { - inheritParentConfig = true; - configuration = { - boot.kernelPackages = lib.mkForce pkgs.linuxPackages_xanmod_latest; - system.nixos.tags = ["with-xanmod"]; - }; - }; - vanilla = { - inheritParentConfig = true; - configuration = { - boot.kernelPackages = lib.mkForce pkgs.linuxPackages_latest; - system.nixos.tags = ["with-vanilla"]; - }; - }; - }; -}