configuration.nix/hosts/skipper/specialisations.nix

23 lines
471 B
Nix
Raw Normal View History

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