Compare commits

...

5 Commits

Author SHA1 Message Date
db4e14d677 libvirt: remove deprecated option
Some checks failed
Run nix flake check / flake-check (push) Failing after 43s
Periodic flake update / flake-update (push) Successful in 2m29s
2025-10-07 09:56:01 +02:00
5c5e5dce46 packages: remove some extra libs for prismlauncher 2025-10-07 09:54:38 +02:00
f20a225552 gunter: use 6.12 kernel due to issues 2025-10-07 09:54:38 +02:00
9aaa89db78 gunter: add memtest86 to boot menu 2025-10-07 09:54:38 +02:00
2e274b3372 gunter: blacklist amdgpu module 2025-10-07 09:54:38 +02:00
3 changed files with 5 additions and 28 deletions

View File

@@ -62,34 +62,12 @@ in
pamixer
pwvucontrol
(prismlauncher.override {
additionalLibs = [
libgcc.lib
glib
nss
nspr
at-spi2-atk
cups
libdrm
libx11
xorg.libXcomposite
xorg.libXdamage
libxext
xorg.libXfixes
xorg.libXrandr
libgbm
expat
libxcb
libxkbcommon
dbus.lib
pango
cairo
alsa-lib
];
jdks = [
jdk21
jdk17
jdk8
temurin-jre-bin-25
temurin-jre-bin-17
];
})
rofi-rbw-wayland

View File

@@ -31,12 +31,13 @@
"mt76"
];
# Kernel stuff
kernelPackages = pkgs.linuxPackages_latest;
# kernelPackages = lib.warn "Pinned to kernel 6.14 due to nvidia issues" pkgs.linuxPackages_6_14;
# kernelPackages = pkgs.linuxPackages_latest;
kernelPackages = lib.warn "Pinned to kernel 6.12 due to issues" pkgs.linuxPackages_6_12;
kernelParams = [
"quiet"
"splash"
"rd.systemd.show_status=false"
"module_blacklist=amdgpu"
];
extraModprobeConfig = ''
@@ -47,6 +48,7 @@
loader.systemd-boot = {
enable = true;
configurationLimit = 10;
memtest86.enable = true;
};
loader.efi = {
canTouchEfiVariables = true;

View File

@@ -6,9 +6,6 @@
package = pkgs.qemu_kvm;
runAsRoot = true;
swtpm.enable = true;
ovmf = {
enable = true;
};
};
};
}