depot/third_party/home-manager/tests/modules/programs/boxxy/empty-settings.nix
Default email 75fa0ae5af Project import generated by Copybara.
GitOrigin-RevId: c3ab5ea047e6dc73df530948f7367455749d8906
2023-08-08 12:19:01 +02:00

15 lines
205 B
Nix

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