update flake, switch to kvm instead of virtualbox, add lrzip package
All checks were successful
Build iso when a new version is pushed / test (push) Successful in 9m44s

This commit is contained in:
2025-06-09 17:04:50 +02:00
parent 18df257130
commit 8248d4b969
3 changed files with 18 additions and 16 deletions

View File

@ -1,18 +1,20 @@
{ pkgs, ... }:
{ config, pkgs, ... }:
{
boot.kernelParams = [ "kvm.enable_virt_at_load=0" ];
boot.initrd.luks.devices.cryptroot.device = "/dev/disk/by-uuid/a4593b01-069d-4a5d-a550-74a762b89b3f";
boot.initrd.luks.devices.cryptroot.allowDiscards = true;
mods.displayManager.enable = true;
mods.virtualbox.enable = false;
networking.firewall.enable = false;
networking.hostName = "patate-douce";
networking.wireless.enable = true;
networking.networkmanager.enable = false;
programs.virt-manager.enable = true;
virtualisation.libvirtd.enable = true;
networking.dhcpcd.enable = false;
systemd.network.enable = true;
networking.useNetworkd = true;
@ -20,7 +22,6 @@
environment.systemPackages = with pkgs; [
acpi
tlp
looking-glass-client
fprintd
];