update to kernel 6.2

This commit is contained in:
Noah Masur 2023-02-21 20:28:43 -05:00
parent c08f08692b
commit 48d33a9ef5
2 changed files with 6 additions and 3 deletions

View File

@ -281,11 +281,11 @@
},
"nixpkgs_3": {
"locked": {
"lastModified": 1676110339,
"narHash": "sha256-kOS/L8OOL2odpCOM11IevfHxcUeE0vnZUQ74EOiwXcs=",
"lastModified": 1676973346,
"narHash": "sha256-rft8oGMocTAhUVqG3LW6I8K/Fo9ICGmNjRqaWTJwav0=",
"owner": "nixos",
"repo": "nixpkgs",
"rev": "e5530aba13caff5a4f41713f1265b754dc2abfd8",
"rev": "d0d55259081f0b97c828f38559cad899d351cad1",
"type": "github"
},
"original": {

View File

@ -40,4 +40,7 @@
boot.supportedFilesystems =
lib.mkIf (config.physical && pkgs.stdenv.isLinux) [ "ntfs" ];
# Use latest released Linux kernel by default
boot.kernelPackages = lib.mkDefault pkgs.linuxPackages_latest;
}