commit ac68a9d9c9f7521cb7e54fa4f9bf00f79c7b1a6c
parent 8833626142fc79b676c0ff302a892717c2449f7b
Author: Toni Brown <me@tb148.net>
Date: Wed, 29 Apr 2026 16:23:54 +0800
switch to nixos-unstable-small for remote
Diffstat:
2 files changed, 3 insertions(+), 2 deletions(-)
diff --git a/flake.nix b/flake.nix
@@ -59,7 +59,7 @@
];
};
hetznerion =
- nixpkgs.lib.nixosSystem {
+ nixpkgs-small.lib.nixosSystem {
system = "x86_64-linux";
modules = [
./remote/.
diff --git a/remote/boot/default.nix b/remote/boot/default.nix
@@ -1,7 +1,8 @@
-{...}: {
+{pkgs, ...}: {
boot.loader.grub.enable = true;
boot.loader.grub.efiSupport = true;
boot.loader.grub.efiInstallAsRemovable = true;
boot.loader.grub.device = "/dev/sda";
boot.loader.grub.configurationLimit = 16;
+ boot.kernelPackages = pkgs.linuxPackages_latest;
}