1
0
mirror of https://github.com/nix-community/home-manager synced 2024-07-05 12:53:27 +02:00
home-manager/tests/modules/programs/alacritty/empty-settings.nix

20 lines
310 B
Nix
Raw Normal View History

{ config, lib, pkgs, ... }:
with lib;
{
config = {
programs.alacritty.enable = true;
nixpkgs.overlays = [
(self: super: {
alacritty = pkgs.writeScriptBin "dummy-alacritty" "";
})
];
nmt.script = ''
assertPathNotExists home-files/.config/alacritty
'';
};
}