We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent efaf9e2 commit 55e38ffCopy full SHA for 55e38ff
2 files changed
hosts/canoe/configuration.nix
@@ -16,6 +16,9 @@
16
17
hardware.enableRedistributableFirmware = true;
18
19
+ # Adopt 26.11 default early; ISO doesn't use ZFS root.
20
+ boot.zfs.forceImportRoot = false;
21
+
22
users.users.${userConfig.username} = {
23
isNormalUser = true;
24
extraGroups = ["wheel" "networkmanager"];
modules/core/system.nix
@@ -14,6 +14,9 @@ in {
14
time.timeZone = "America/Phoenix";
15
i18n.defaultLocale = "en_US.UTF-8";
+ # Adopt the 26.11 default early; we don't use ZFS root, so safe.
# --- RUST SYSTEM SPIRITS ---
security = {
sudo.enable = lib.mkForce false;
0 commit comments