alacritty: add configuration

Add the whole file rather than adding it via Home Manager as that causes
a conflict with Pop!_OS where Alacritty is installed via Flatpak rather
than via Nix/Home Manager.

This may be something to try again in future.
This commit is contained in:
Oliver Davies 2023-01-18 09:47:58 +00:00
parent 19177de131
commit fb8ce83e9f
2 changed files with 28 additions and 0 deletions

View file

@ -0,0 +1,23 @@
{
"font": {
"glyph_offset": {
"y": 6
},
"normal": {
"family": "JetBrains Mono NL"
},
"offset": {
"y": 12
},
"size": 12
},
"shell": {
"program": "zsh"
},
"window": {
"padding": {
"x": 15,
"y": 15
}
}
}

View file

@ -235,6 +235,11 @@ in {
"$HOME/.config/bin"
];
xdg.configFile.alacritty = {
source = ../../config/alacritty;
recursive = true;
};
xdg.configFile.bin = {
source = ../../bin;
recursive = true;