mirror of
https://github.com/0x1d/nix.git
synced 2026-09-20 08:39:15 +02:00
chore: upgrade nixos to 26.05
yep
This commit is contained in:
@@ -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";
|
||||
}
|
||||
|
||||
@@ -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";
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user