summaryrefslogtreecommitdiff
path: root/hosts/tacitus/default.nix
diff options
context:
space:
mode:
authorJakub Stachurski <j.stachurski@student.utwente.nl>2026-05-08 23:23:19 +0200
committerJakub Stachurski <j.stachurski@student.utwente.nl>2026-05-08 23:23:19 +0200
commitbb957032ffc5352229edbbdcdb56b9dba4408f37 (patch)
tree8d6c171a49aae83dfc191e2aad1ecf55330f0bb4 /hosts/tacitus/default.nix
parentad57da6bda1cb00ab11f78125c16daebbf0c221c (diff)
Tacitus hosts and locale
Diffstat (limited to '')
-rw-r--r--hosts/tacitus/default.nix (renamed from hosts/threshold/default.nix)23
1 files changed, 13 insertions, 10 deletions
diff --git a/hosts/threshold/default.nix b/hosts/tacitus/default.nix
index 485997b..1efc539 100644
--- a/hosts/threshold/default.nix
+++ b/hosts/tacitus/default.nix
@@ -3,7 +3,6 @@
...
}:
{
-
imports = [
./network.nix
./disko.nix
@@ -17,18 +16,22 @@
# Bootloader and boot setup.
boot.loader.efi.canTouchEfiVariables = lib.mkDefault true;
-
- boot.loader.grub = {
- enable = true;
- useOSProber = false;
- device = "nodev";
+ boot.loader.limine = {
efiSupport = true;
- default = "saved";
- memtest86.enable = true;
+ enable = true;
+ secureBoot = {
+ enable = true;
+ autoGenerateKeys = true;
+ autoEnrollKeys = {
+ extraArgs = [
+ "--microsoft"
+ "--firmware-builtin"
+ ];
+ };
+ };
};
-
# Networking setup
- networking.hostName = "threshold";
+ networking.hostName = "tacitus";
services.resolved = {
enable = true;
settings.Resolve.DNSOverTLS = "opportunistic";