diff options
-rw-r--r-- | machines/firelink.nix | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/machines/firelink.nix b/machines/firelink.nix index e705737..3901e32 100644 --- a/machines/firelink.nix +++ b/machines/firelink.nix @@ -15,6 +15,8 @@ in { # Don't run gc on startup. nix.gc.persistent = false; + systemd.watchdog.runtimeTime = "30s"; + services.fwupd.enable = true; orbekk.simple-firewall.allowedTCPPorts = [ 69 22 @@ -99,7 +101,7 @@ in { boot.loader.efi.canTouchEfiVariables = true; # boot.loader.grub.efiInstallAsRemovable = true; boot.kernelPackages = pkgs.my-linuxPackages; - boot.kernelModules = [ "kvm-amd" "i2c-dev" "amdgpu" ]; + boot.kernelModules = [ "i2c-dev" "amdgpu" ]; # https://bugzilla.kernel.org/show_bug.cgi?id=203709 boot.extraModprobeConfig = '' |