configuration.nix/hosts/skipper/specialisations.nix

26 lines
510 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" ];
};
};
zen = {
inheritParentConfig = true;
configuration = {
boot = {
kernelPackages = lib.mkForce pkgs.linuxPackages_zen;
};
system.nixos.tags = [ "with-zen" ];
};
};
};
}