configuration.nix/hosts/skipper/specialisations.nix

36 lines
689 B
Nix
Raw Normal View History

{ lib
, pkgs
, ...
2024-02-04 18:21:53 +05:30
}:
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 = {
2024-03-15 22:21:56 +05:30
stable = {
inheritParentConfig = true;
configuration = {
boot = {
2024-03-15 22:21:56 +05:30
kernelPackages = lib.mkForce pkgs.linuxPackages;
2024-02-04 18:21:53 +05:30
inherit plymouth;
};
};
};
zen = {
inheritParentConfig = true;
configuration = {
boot = {
kernelPackages = lib.mkForce pkgs.linuxPackages_zen;
2024-02-04 18:21:53 +05:30
inherit plymouth;
};
};
};
};
}