diff options
| -rw-r--r-- | flake.nix | 1 | ||||
| -rw-r--r-- | hosts/glados/boot.nix | 11 |
2 files changed, 9 insertions, 3 deletions
@@ -58,6 +58,7 @@ } ]; specialArgs = { + nixpkgsStable = nixpkgs; desktop = "gnome"; standalone = false; wsl = false; diff --git a/hosts/glados/boot.nix b/hosts/glados/boot.nix index f936f1e..6ff35ba 100644 --- a/hosts/glados/boot.nix +++ b/hosts/glados/boot.nix @@ -1,15 +1,20 @@ { - config, lib, pkgs, + nixpkgsStable, ... -}: { +}: let + pinned-kernel = import nixpkgsStable { + system = "x86_64-linux"; + config.allowUnfree = true; + }; +in { environment.systemPackages = with pkgs; [ sbctl ]; boot = { - kernelPackages = pkgs.linuxPackages_latest; + kernelPackages = pinned-kernel.pkgs.linuxPackages_6_1; bootspec.enable = true; loader.systemd-boot.enable = lib.mkForce false; |
