rcgit

/ nixos

Commit 804924be

SHA 804924be3b40407d7e063184a2689c644410116f
Author Petri Hienonen <petri.hienonen at gmail dot com>
Author Date 2025-12-08 17:27 +0200
Committer Petri Hienonen <petri.hienonen at gmail dot com>
Commit Date 2025-12-08 17:27 +0200
Parent(s) c3aa7fe5e6c8 (diff)
Tree c07008640b69

patch snapshot

Update
File + - Graph
M hosts/kataja/default.nix +1 -2
M hosts/kataja/hardware-configuration.nix +1 -10
2 file(s) changed, 2 insertions(+), 12 deletions(-)

hosts/kataja/default.nix

diff --git a/hosts/kataja/default.nix b/hosts/kataja/default.nix
index f820c8c..9317734 100644
--- a/hosts/kataja/default.nix
+++ b/hosts/kataja/default.nix
@@ -115,7 +115,6 @@
   hardware = {
     graphics = {
       extraPackages = with pkgs; [
-        amdvlk
         rocmPackages.clr.icd
       ];
     };
@@ -123,5 +122,5 @@
     bluetooth.settings.General.Name = "kataja";
   };
 
-  system.stateVersion = "24.05";
+  system.stateVersion = "25.11";
 }

hosts/kataja/hardware-configuration.nix

diff --git a/hosts/kataja/hardware-configuration.nix b/hosts/kataja/hardware-configuration.nix
index 5d1d1b7..db1602b 100644
--- a/hosts/kataja/hardware-configuration.nix
+++ b/hosts/kataja/hardware-configuration.nix
@@ -20,6 +20,7 @@
       availableKernelModules = [
         "ahci"
         "amdgpu"
+        "cdc_acm"
         "mt7921e"
         "nvme"
         "r8169"
@@ -27,7 +28,6 @@
         "usb_storage"
         "usbhid"
         "xhci_pci"
-        "cdc_acm"
       ];
     };
     kernelParams = [
@@ -65,15 +65,6 @@
 
   swapDevices = [ { device = "/dev/disk/by-uuid/97641877-607c-46cd-853d-e431c8a90dc2"; } ];
 
-  # Enables DHCP on each ethernet and wireless interface. In case of scripted networking
-  # (the default) this is the recommended approach. When using systemd-networkd it's
-  # still possible to use this option, but it's recommended to use it in conjunction
-  # with explicit per-interface declarations with `networking.interfaces.<interface>.useDHCP`.
-  # networking.useDHCP = lib.mkDefault true;
-  # networking.interfaces.eno1.useDHCP = lib.mkDefault true;
-  # networking.interfaces.enp2s0.useDHCP = lib.mkDefault true;
-  # networking.interfaces.wlp3s0.useDHCP = lib.mkDefault true;
-
   nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
   hardware.cpu.amd.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
 }