update nixpkgs + kernel 6.13

This commit is contained in:
Henri Dohmen 2025-03-27 00:00:05 +01:00
parent 7d7d1b076d
commit 7f4925f715
3 changed files with 6 additions and 5 deletions

View file

@ -19,4 +19,3 @@ _switch_%:
false; \ false; \
fi fi
nixos-rebuild switch --flake .#$* nixos-rebuild switch --flake .#$*

6
flake.lock generated
View file

@ -2,11 +2,11 @@
"nodes": { "nodes": {
"nixpkgs": { "nixpkgs": {
"locked": { "locked": {
"lastModified": 1742069588, "lastModified": 1742889210,
"narHash": "sha256-C7jVfohcGzdZRF6DO+ybyG/sqpo1h6bZi9T56sxLy+k=", "narHash": "sha256-hw63HnwnqU3ZQfsMclLhMvOezpM7RSB0dMAtD5/sOiw=",
"owner": "NixOS", "owner": "NixOS",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "c80f6a7e10b39afcc1894e02ef785b1ad0b0d7e5", "rev": "698214a32beb4f4c8e3942372c694f40848b360d",
"type": "github" "type": "github"
}, },
"original": { "original": {

View file

@ -1,4 +1,4 @@
{ ... }: { pkgs, ... }:
{ {
boot.loader = { boot.loader = {
efi.canTouchEfiVariables = true; efi.canTouchEfiVariables = true;
@ -8,4 +8,6 @@
device = "nodev"; device = "nodev";
}; };
}; };
boot.kernelPackages = pkgs.linuxPackages_6_13;
} }