1
0
Fork 0

update system to 26.05

This commit is contained in:
cătălin 2026-06-11 14:01:25 +02:00
commit e770bf9a6d
No known key found for this signature in database
5 changed files with 61 additions and 20 deletions

View file

@ -10,7 +10,27 @@
loader.systemd-boot.enable = true;
loader.efi.canTouchEfiVariables = true;
kernelPackages = pkgs.linuxPackages_latest;
initrd.luks.devices."luks-7565ba12-2da3-4933-adec-8d62e81afe52".device = "/dev/disk/by-uuid/7565ba12-2da3-4933-adec-8d62e81afe52";
initrd.luks = {
devices."luks-7565ba12-2da3-4933-adec-8d62e81afe52".device = "/dev/disk/by-uuid/7565ba12-2da3-4933-adec-8d62e81afe52";
cryptoModules = [
"aes"
# "aes_generic"
"blowfish"
"twofish"
"serpent"
"cbc"
"xts"
"lrw"
"sha1"
"sha256"
"sha512"
"af_alg"
"algif_skcipher"
"cryptd"
"input_leds"
];
};
};
nix = {
@ -38,6 +58,7 @@
alsa.enable = true;
alsa.support32Bit = true;
pulse.enable = true;
jack.enable = true;
};
udev.packages = with pkgs; [ gnome-settings-daemon ];
sysprof.enable = true;
@ -61,6 +82,7 @@
appimage.enable = true;
appimage.binfmt = true;
dconf.enable = true;
gamemode.enable = true;
gamescope = {
enable = true;
capSysNice = true;
@ -137,15 +159,27 @@
};
virtualisation.docker.enable = true;
nixpkgs.config.allowUnfree = true;
nixpkgs.config ={
allowUnfree = true;
permittedInsecurePackages = [
"docker-28.5.2"
];
};
environment = {
sessionVariables.NIXOS_OZONE_WL = "1";
sessionVariables = {
GST_PLUGIN_SYSTEM_PATH_1_0 = lib.makeSearchPathOutput "lib" "lib/gstreamer-1.0" [
pkgs.gst_all_1.gst-plugins-good
pkgs.gst_all_1.gst-plugins-bad
pkgs.gst_all_1.gst-plugins-ugly
];
NIXOS_OZONE_WL = "1";
};
systemPackages = import ./packages.nix pkgs;
loginShellInit = ''
[[ "$(tty)" = "/dev/tty1" ]] && ~/.dotfiles/conf.d/utils/gs.sh
'';
};
system.stateVersion = "25.11";
}