aboutsummaryrefslogtreecommitdiff
path: root/home-manager/tests/modules/programs/alacritty/empty-settings.nix
blob: f3f8486ad3d2987b3ea6ea6a98003f25eeef0cad (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
{ config, lib, pkgs, ... }:

with lib;

{
  config = {
    programs.alacritty.enable = true;

    nmt.script = ''
      assertPathNotExists home-files/.config/alacritty
    '';
  };
}