Compare commits

...

2 Commits

Author SHA1 Message Date
Kabbone aa22a83853 fix changes for 26.05 update 2026-06-01 18:09:40 +02:00
Kabbone 7dba899219 rename zmkbatx 2026-06-01 17:45:01 +02:00
3 changed files with 9 additions and 4 deletions
+2
View File
@@ -211,11 +211,13 @@
};
fileSystems."/export/Pluto" = {
fsType = "auto";
device = "/mnt/Pluto";
options = ["bind"];
};
fileSystems."/export/Mars" = {
fsType = "auto";
device = "/mnt/Mars";
options = ["bind"];
};
+6 -3
View File
@@ -541,9 +541,12 @@ in {
# ── Laptop ─────────────────────────────────────────────────────────────
(lib.mkIf cfg.laptop.enable {
systemd.sleep.extraConfig = "HibernateDelaySec=${cfg.laptop.hibernateDelaySec}";
services.logind.settings.Login.HandleLidSwitch =
cfg.laptop.lidSwitch;
systemd.sleep.settings.Sleep = {
HibernateDelaySec = cfg.laptop.hibernateDelaySec;
};
services.logind.settings.Login = {
HandleLidSwitch = cfg.laptop.lidSwitch;
};
})
# ── Nitrokey ───────────────────────────────────────────────────────────
+1 -1
View File
@@ -12,6 +12,6 @@
};
};
environment.systemPackages = with pkgs; [
zmkBATx
zmkbatx
];
}