host framenix: use latest stable linux kernel to profit from fixes for new hardware
This commit is contained in:
parent
ee009e1d03
commit
34dce961d3
|
@ -13,9 +13,6 @@ in
|
||||||
|
|
||||||
services.davfs2.enable = true;
|
services.davfs2.enable = true;
|
||||||
|
|
||||||
# try newer kernels
|
|
||||||
#boot.kernelPackages = pkgs.linuxPackages_latest;
|
|
||||||
|
|
||||||
|
|
||||||
# exfat support
|
# exfat support
|
||||||
#boot.extraModulePackages = [ config.boot.kernelPackages.exfat-nofuse ];
|
#boot.extraModulePackages = [ config.boot.kernelPackages.exfat-nofuse ];
|
||||||
|
|
|
@ -10,8 +10,13 @@
|
||||||
|
|
||||||
networking.hostName = "framenix"; # Define your hostname.
|
networking.hostName = "framenix"; # Define your hostname.
|
||||||
|
|
||||||
boot.loader.systemd-boot.enable = true;
|
# try newer kernels
|
||||||
boot.loader.efi.canTouchEfiVariables = true;
|
boot.kernelPackages = pkgs.linuxPackages_latest;
|
||||||
|
|
||||||
|
boot.loader = {
|
||||||
|
systemd-boot.enable = true;
|
||||||
|
efi.canTouchEfiVariables = true;
|
||||||
|
};
|
||||||
|
|
||||||
# This option defines the first version of NixOS you have installed on this particular machine,
|
# This option defines the first version of NixOS you have installed on this particular machine,
|
||||||
# and is used to maintain compatibility with application data (e.g. databases) created on older NixOS versions.
|
# and is used to maintain compatibility with application data (e.g. databases) created on older NixOS versions.
|
||||||
|
|
Loading…
Reference in a new issue