diff options
author | Tim Keller <tjkeller.xyz> | 2024-11-07 15:31:11 -0600 |
---|---|---|
committer | Tim Keller <tjkeller.xyz> | 2024-11-07 15:31:11 -0600 |
commit | e28e7847ffbbcd49489a90f9b8f2eb07fb65a4a7 (patch) | |
tree | f45346dcc0236b93084b9aa62905f762b6a58b16 | |
parent | 78d758b4b22e1150b32f3643ef5a9f04f76abf26 (diff) | |
download | nixos-e28e7847ffbbcd49489a90f9b8f2eb07fb65a4a7.tar.xz nixos-e28e7847ffbbcd49489a90f9b8f2eb07fb65a4a7.zip |
use amdgpu driver for laptop to support xorg tearfree option
-rw-r--r-- | modules/hosts/T495/configuration.nix | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/modules/hosts/T495/configuration.nix b/modules/hosts/T495/configuration.nix index 8e10260..fdd2930 100644 --- a/modules/hosts/T495/configuration.nix +++ b/modules/hosts/T495/configuration.nix @@ -26,5 +26,12 @@ # Enable network drives fs.networkFS.enable = true; + networking.hosts = { + "192.168.77.3" = [ "devel" ]; + }; + + # Use amdgpu driver for x11 + services.xserver.videoDrivers = [ "amdgpu" ]; + system.stateVersion = "24.05"; } |