aboutsummaryrefslogtreecommitdiffstats
path: root/hosts/kataja
diff options
context:
space:
mode:
authorPetri Hienonen <petri.hienonen@gmail.com>2025-12-08 17:27:13 +0200
committerPetri Hienonen <petri.hienonen@gmail.com>2025-12-08 17:27:13 +0200
commit804924be3b40407d7e063184a2689c644410116f (patch)
treec07008640b695b352e686085638dba9be50e244a /hosts/kataja
parentc3aa7fe5e6c8c0928d896fc28b41dd96cf7d1a57 (diff)
downloadnixos-804924be3b40407d7e063184a2689c644410116f.tar.zst
Update
Diffstat (limited to 'hosts/kataja')
-rw-r--r--hosts/kataja/default.nix3
-rw-r--r--hosts/kataja/hardware-configuration.nix11
2 files changed, 2 insertions, 12 deletions
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";
}
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;
}