alacritty: cleanup after 0.13 merge in nixpkgs

This commit is contained in:
Ramses 2024-04-19 16:57:02 +02:00 committed by GitHub
parent 7ca7025cf2
commit 068dd4ae29
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
7 changed files with 21 additions and 41 deletions

View file

@ -1,12 +1,10 @@
{ config, lib, pkgs, ... }:
with lib;
{ config, ... }:
{
config = {
programs.alacritty = {
enable = true;
package = config.lib.test.mkStubPackage { version = "0.13.0"; };
package = config.lib.test.mkStubPackage { };
settings = {
window.dimensions = {
@ -17,7 +15,7 @@ with lib;
keyboard.bindings = [{
key = "K";
mods = "Control";
chars = "\\x0c";
chars = "\\u000c";
}];
};
};