chore: upgrade nixos to 26.05

yep
This commit is contained in:
2026-09-09 23:52:00 +02:00
parent 7109f83083
commit 58486e77e4
4 changed files with 83 additions and 22 deletions

View File

@@ -2,5 +2,20 @@
time.timeZone = "Europe/Zurich";
i18n.defaultLocale = "en_US.UTF-8";
i18n.extraLocaleSettings = {
LC_ADDRESS = "de_CH.UTF-8";
LC_IDENTIFICATION = "de_CH.UTF-8";
LC_MEASUREMENT = "de_CH.UTF-8";
LC_MONETARY = "de_CH.UTF-8";
LC_NAME = "de_CH.UTF-8";
LC_NUMERIC = "de_CH.UTF-8";
LC_PAPER = "de_CH.UTF-8";
LC_TELEPHONE = "de_CH.UTF-8";
LC_TIME = "de_CH.UTF-8";
};
i18n.supportedLocales = [
"en_US.UTF-8/UTF-8"
"de_CH.UTF-8/UTF-8"
];
console.keyMap = "sg";
}

View File

@@ -64,7 +64,11 @@ in {
platformio
avrdude
#python314
python312
# Wrap so buildEnv does not pick up python312's broken passthru.doc (uncached on 26.05)
(symlinkJoin {
name = python312.name;
paths = [ python312 ];
})
esptool
wireguard-tools
protonvpn-gui
@@ -77,6 +81,7 @@ in {
ffmpeg
unstable.golangci-lint
unstable.terraform
unstable.opencode
];
fonts.packages = with pkgs; [
@@ -103,10 +108,10 @@ in {
RuntimeDirectorySize = "20G";
};
};
systemd.sleep.extraConfig = ''
AllowSuspend=yes
AllowHibernation=yes
AllowHybridSleep=yes
AllowSuspendThenHibernate=yes
'';
systemd.sleep.settings.Sleep = {
AllowSuspend = "yes";
AllowHibernation = "yes";
AllowHybridSleep = "yes";
AllowSuspendThenHibernate = "yes";
};
}