diff options
| author | Tim Keller <tjk@tjkeller.xyz> | 2026-06-21 22:53:05 -0500 |
|---|---|---|
| committer | Tim Keller <tjk@tjkeller.xyz> | 2026-06-21 22:53:05 -0500 |
| commit | 6d109a9f958a00a4f3fc537d213067e5777ab120 (patch) | |
| tree | 86771ee71eb9b7466877f61b60cb9b78c0e16627 /hosts/sweetiepc/configuration.nix | |
| parent | 560f5a04cecb2903bba56e154882b0b220a2f578 (diff) | |
| download | nixos-6d109a9f958a00a4f3fc537d213067e5777ab120.tar.xz nixos-6d109a9f958a00a4f3fc537d213067e5777ab120.zip | |
Diffstat (limited to 'hosts/sweetiepc/configuration.nix')
| -rw-r--r-- | hosts/sweetiepc/configuration.nix | 13 |
1 files changed, 12 insertions, 1 deletions
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"; } |
