Move back to linux LTS (remove ddcci workaround)

This commit is contained in:
Andrea Ciceri 2024-11-08 10:16:54 +01:00
parent 8af20e204a
commit 2a213c6b28
Signed by: aciceri
SSH key fingerprint: SHA256:/AagBweyV4Hlfg9u092n8hbHwD5fcB6A3qhDiDA65Rg
2 changed files with 88 additions and 119 deletions

View file

@ -1,44 +1,34 @@
{
fleetModules,
lib,
pkgs,
...
}:
{
imports =
fleetModules [
"common"
"ssh"
"ccr"
"nix"
"networkmanager"
"bluetooth"
"dbus"
"docker"
"fonts"
"qmk-udev"
"mosh"
"udisks2"
"xdg"
"pipewire"
"nix-development"
"virt-manager"
"ssh-initrd"
"printing"
"pam"
"wireguard-client"
"greetd"
"syncthing"
"mount-sisko"
"adb"
"binfmt"
"prometheus-exporters"
"promtail"
"syncthing"
]
++ [
./disko.nix
];
{ fleetModules, lib, pkgs, ... }: {
imports = fleetModules [
"common"
"ssh"
"ccr"
"nix"
"networkmanager"
"bluetooth"
"dbus"
"docker"
"fonts"
"qmk-udev"
"mosh"
"udisks2"
"xdg"
"pipewire"
"nix-development"
"virt-manager"
"ssh-initrd"
"printing"
"pam"
"wireguard-client"
"greetd"
"syncthing"
"mount-sisko"
"adb"
"binfmt"
"prometheus-exporters"
"promtail"
"syncthing"
] ++ [ ./disko.nix ];
ccr = {
enable = true;
@ -80,17 +70,11 @@
};
boot.initrd.kernelModules = [ "i915" ];
boot.initrd.availableKernelModules = [
"nvme"
"xhci_pci"
"usb_storage"
"sd_mod"
];
boot.kernelModules = [
"kvm-intel"
];
boot.initrd.availableKernelModules =
[ "nvme" "xhci_pci" "usb_storage" "sd_mod" ];
boot.kernelModules = [ "kvm-intel" ];
boot.kernelPackages = pkgs.linuxKernel.packages.linux_6_10;
boot.kernelPackages = pkgs.linuxPackages;
boot.loader.efi.canTouchEfiVariables = true;
boot.loader.systemd-boot = {