1
0
mirror of https://github.com/nix-community/home-manager synced 2024-06-02 21:13:33 +02:00
home-manager/tests/modules/programs/alacritty/empty-settings.nix
Tadeo Kondrak d2ed39f103
alacritty: don't create file if settings is empty
Also add a few test cases for the alacritty module.
2019-05-14 23:53:10 +02:00

14 lines
184 B
Nix

{ config, lib, pkgs, ... }:
with lib;
{
config = {
programs.alacritty.enable = true;
nmt.script = ''
assertPathNotExists home-files/.config/alacritty
'';
};
}