From 6d109a9f958a00a4f3fc537d213067e5777ab120 Mon Sep 17 00:00:00 2001 From: Tim Keller Date: Sun, 21 Jun 2026 22:53:05 -0500 Subject: backup server config and gnome profile. fix bootloader for grub --- hosts/sweetiepc/configuration.nix | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) (limited to 'hosts/sweetiepc/configuration.nix') diff --git a/hosts/sweetiepc/configuration.nix b/hosts/sweetiepc/configuration.nix index 5c6b427..d2bf172 100644 --- a/hosts/sweetiepc/configuration.nix +++ b/hosts/sweetiepc/configuration.nix @@ -1,6 +1,9 @@ { config, lib, pkgs, home-manager, ... }: { # Setup bootloader - boot._loader.enable = true; + boot._loader = { + enable = true; + loader = "grub"; + }; # Enable common options _archetypes = { @@ -10,6 +13,8 @@ home.users.timmy.enable = true; }; zfs.enable = true; + btrfs.enable = true; + gnome.enable = true; }; collections = { desktop = { @@ -18,6 +23,9 @@ }; }; + # Import zfs pools + boot.zfs.extraPools = [ "geminus" "quattuor" ]; + # Enable user timmy _users.timmy = { enable = true; @@ -34,5 +42,8 @@ }; }; + # Without this, "ZFS requires networking.hostId to be set" will be raised + networking.hostId = "fdde503a"; + system.stateVersion = "26.05"; } -- cgit v1.2.3