mirror of
https://github.com/nix-community/home-manager
synced 2024-11-05 02:39:45 +01:00
797c77a00a
This replaces some derivation outputs by simple strings rather than full Nix store paths. This removes the need to download the whole derivation when all we need is a static string.
38 lines
653 B
Nix
38 lines
653 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
with lib;
|
|
|
|
{
|
|
config = {
|
|
programs.alacritty = {
|
|
enable = true;
|
|
|
|
settings = {
|
|
window.dimensions = {
|
|
lines = 3;
|
|
columns = 200;
|
|
};
|
|
|
|
key_bindings = [
|
|
{
|
|
key = "K";
|
|
mods = "Control";
|
|
chars = "\\x0c";
|
|
}
|
|
];
|
|
};
|
|
};
|
|
|
|
nixpkgs.overlays = [
|
|
(self: super: {
|
|
alacritty = pkgs.writeScriptBin "dummy-alacritty" "";
|
|
})
|
|
];
|
|
|
|
nmt.script = ''
|
|
assertFileContent \
|
|
home-files/.config/alacritty/alacritty.yml \
|
|
${./example-settings-expected.yml}
|
|
'';
|
|
};
|
|
}
|