diff options
author | Vincent Ambo <mail@tazj.in> | 2020-06-24T01·23+0100 |
---|---|---|
committer | tazjin <mail@tazj.in> | 2020-06-24T01·27+0000 |
commit | 14317eea79fe8ea799a263542f126b59f4361d5c (patch) | |
tree | 55d71929fdcf86d40b5d15a6344a237403d2b8e0 /users/tazjin/nixos/frog/default.nix | |
parent | e7dd5e30e949611add6f6e69c2a63f3863f7cfce (diff) |
fix(tazjin/frog): Explicitly use amdgpu driver r/1072
This ends up using the same driver, but generates saner display names somehow. Who knows what's going on there. FWIW, it didn't help with the font weight issue. Change-Id: Ib6161088b23109f4f0e24b8a87c478ad274df4d6 Reviewed-on: https://cl.tvl.fyi/c/depot/+/566 Reviewed-by: tazjin <mail@tazj.in>
Diffstat (limited to 'users/tazjin/nixos/frog/default.nix')
-rw-r--r-- | users/tazjin/nixos/frog/default.nix | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/users/tazjin/nixos/frog/default.nix b/users/tazjin/nixos/frog/default.nix index 478c3882981b..62273b0b5733 100644 --- a/users/tazjin/nixos/frog/default.nix +++ b/users/tazjin/nixos/frog/default.nix @@ -151,6 +151,7 @@ in depot.lib.fix(self: { layout = "us"; xkbOptions = "caps:super"; exportConfiguration = true; + videoDrivers = [ "amdgpu" ]; displayManager = { # Give EXWM permission to control the session. sessionCommands = "${nixpkgs.xorg.xhost}/bin/xhost +SI:localuser:$USER"; |