remove linux-lts specialisation
This commit is contained in:
parent
bd49b6adf4
commit
7d9a2b6fa3
3 changed files with 1 additions and 12 deletions
|
@ -9,7 +9,6 @@
|
|||
./rollback.nix
|
||||
./secureboot.nix
|
||||
./security.nix
|
||||
./specialisation.nix
|
||||
./virtualisation.nix
|
||||
];
|
||||
|
||||
|
|
|
@ -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;
|
||||
|
|
|
@ -1,10 +0,0 @@
|
|||
{ pkgs, ... }: {
|
||||
specialisation = {
|
||||
linux_lts = {
|
||||
configuration = {
|
||||
boot.kernelPackages = pkgs.linuxPackages;
|
||||
system.nixos.tags = [ "with-lts-kernel" ];
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue