tv alacritty: automatically select hidpi variant

This commit is contained in:
tv 2023-01-11 20:08:56 +01:00
parent 82589eef82
commit 3fc184a226
1 changed files with 7 additions and 0 deletions

View File

@ -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";
};
}));
}