summaryrefslogtreecommitdiff
path: root/hosts/sweetiepc/configuration.nix
diff options
context:
space:
mode:
Diffstat (limited to 'hosts/sweetiepc/configuration.nix')
-rw-r--r--hosts/sweetiepc/configuration.nix13
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";
}