From bfd970a07c231b5781871c16cb4612eb4c6b8fd4 Mon Sep 17 00:00:00 2001 From: aethrvmn Date: Sun, 31 Aug 2025 16:21:34 +0200 Subject: imported system/home-manager config --- hosts/station/boot.nix | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 hosts/station/boot.nix (limited to 'hosts/station/boot.nix') diff --git a/hosts/station/boot.nix b/hosts/station/boot.nix new file mode 100644 index 0000000..603ebf7 --- /dev/null +++ b/hosts/station/boot.nix @@ -0,0 +1,20 @@ +{ config, pkgs, ...}: + +{ + boot = { + loader = { + systemd-boot = { + enable = true; + # Only keep the last 10 configurations + configurationLimit = 10; + }; + efi.canTouchEfiVariables = true; + }; + + initrd = { + luks.devices."luks-4d8ffefc-fb74-4628-9779-abc535146374".device = "/dev/disk/by-uuid/4d8ffefc-fb74-4628-9779-abc535146374"; + + kernelModules = ["amdgpu"]; + }; + }; +} -- cgit v1.2.3