summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorTim Keller <tjkeller.xyz>2024-11-07 15:31:11 -0600
committerTim Keller <tjkeller.xyz>2024-11-07 15:31:11 -0600
commite28e7847ffbbcd49489a90f9b8f2eb07fb65a4a7 (patch)
treef45346dcc0236b93084b9aa62905f762b6a58b16 /modules
parent78d758b4b22e1150b32f3643ef5a9f04f76abf26 (diff)
downloadnixos-e28e7847ffbbcd49489a90f9b8f2eb07fb65a4a7.tar.xz
nixos-e28e7847ffbbcd49489a90f9b8f2eb07fb65a4a7.zip
use amdgpu driver for laptop to support xorg tearfree option
Diffstat (limited to 'modules')
-rw-r--r--modules/hosts/T495/configuration.nix7
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";
}