remove linux-lts specialisation

This commit is contained in:
Adithya 2024-01-04 21:51:18 +05:30
parent bd49b6adf4
commit 7d9a2b6fa3
Signed by: adtya
GPG key ID: 48FC9915FFD326D0
3 changed files with 1 additions and 12 deletions

View file

@ -9,7 +9,6 @@
./rollback.nix
./secureboot.nix
./security.nix
./specialisation.nix
./virtualisation.nix
];

View file

@ -18,7 +18,7 @@
systemd.enable = true;
};
kernelModules = [ "kvm-intel" ];
kernelPackages = lib.mkDefault pkgs.linuxPackages_latest;
kernelPackages = pkgs.linuxPackages_latest;
kernelParams = [ "quiet" ];
kernel.sysctl = {
"vm.swappiness" = 0;

View file

@ -1,10 +0,0 @@
{ pkgs, ... }: {
specialisation = {
linux_lts = {
configuration = {
boot.kernelPackages = pkgs.linuxPackages;
system.nixos.tags = [ "with-lts-kernel" ];
};
};
};
}