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"]; - }; - }; - }; -}