configuration.nix/hosts/skipper/specialisation.nix

11 lines
204 B
Nix
Raw Normal View History

2023-11-04 16:12:45 +05:30
{ pkgs, ... }: {
2023-11-04 15:09:06 +05:30
specialisation = {
linux_lts = {
configuration = {
boot.kernelPackages = pkgs.linuxPackages;
2023-11-05 23:02:31 +05:30
system.nixos.tags = [ "with-lts-kernel" ];
2023-11-04 15:09:06 +05:30
};
};
};
}