diff options
author | tv <tv@krebsco.de> | 2023-01-11 20:08:56 +0100 |
---|---|---|
committer | tv <tv@krebsco.de> | 2023-01-11 20:47:53 +0100 |
commit | 48b9da48517b3a6e85147e9a177a403ff9b6fb3f (patch) | |
tree | ce24b5914b115c218911a5c87653187957055d75 /tv/2configs | |
parent | 4d4811d480fb1c83732ca60066209403579bab23 (diff) |
tv alacritty: automatically select hidpi variant
Diffstat (limited to 'tv/2configs')
-rw-r--r-- | tv/2configs/default.nix | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/tv/2configs/default.nix b/tv/2configs/default.nix index 5405872..d138484 100644 --- a/tv/2configs/default.nix +++ b/tv/2configs/default.nix @@ -129,4 +129,11 @@ with import ./lib; ]; } ]; + + nixpkgs.overlays = + mkAfter (optional config.hardware.video.hidpi.enable (self: super: { + alacritty-tv = super.alacritty-tv.override { + variant = "hidpi"; + }; + })); } |