configuration.nix/hosts/skipper/specialisations.nix
2024-02-04 21:21:51 +05:30

35 lines
703 B
Nix

{ lib
, pkgs
, ...
}:
let
plymouth = let theme = "angular_alt"; in {
enable = true;
themePackages = lib.mkForce [
(pkgs.adi1090x-plymouth-themes.override { selected_themes = [ theme ]; })
];
theme = lib.mkForce theme;
};
in
{
specialisation = {
xanmod = {
inheritParentConfig = true;
configuration = {
boot = {
kernelPackages = lib.mkForce pkgs.linuxPackages_xanmod_latest;
inherit plymouth;
};
};
};
zen = {
inheritParentConfig = true;
configuration = {
boot = {
kernelPackages = lib.mkForce pkgs.linuxPackages_zen;
inherit plymouth;
};
};
};
};
}