2020-10-12 00:22:58 +00:00
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
|
|
|
|
with lib;
|
|
|
|
|
|
|
|
{
|
|
|
|
config = {
|
|
|
|
programs.alacritty.enable = true;
|
|
|
|
|
2021-11-04 16:42:44 +00:00
|
|
|
test.stubs.alacritty = { };
|
2020-10-12 00:22:58 +00:00
|
|
|
|
|
|
|
nmt.script = ''
|
|
|
|
assertPathNotExists home-files/.config/alacritty
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
}
|