d2ed39f103
Also add a few test cases for the alacritty module.
14 lines
184 B
Nix
14 lines
184 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
with lib;
|
|
|
|
{
|
|
config = {
|
|
programs.alacritty.enable = true;
|
|
|
|
nmt.script = ''
|
|
assertPathNotExists home-files/.config/alacritty
|
|
'';
|
|
};
|
|
}
|