From 954fee00719c305b98fd7c79ef35a4b0afcb73cc Mon Sep 17 00:00:00 2001 From: Pedro Rey Anca Date: Wed, 16 Apr 2025 17:19:10 +0200 Subject: [PATCH] Option name change --- hosts/frues-pc/default.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/hosts/frues-pc/default.nix b/hosts/frues-pc/default.nix index e2e8e45..63e548c 100644 --- a/hosts/frues-pc/default.nix +++ b/hosts/frues-pc/default.nix @@ -18,7 +18,7 @@ boot.initrd.kernelModules = ["amdgpu"]; services.xserver.videoDrivers = ["amdgpu"]; - hardware.opengl.extraPackages = with pkgs; [ + hardware.graphics.extraPackages = with pkgs; [ rocmPackages.clr.icd amdvlk ]; @@ -35,4 +35,6 @@ "HDMI-A-1, 1920x1080@75, 0x0, 1" "DP-1, 2560x1440@165, 1920x0, 1.333333" ]; + + services.sshd.enable = true; }