depot/third_party/home-manager/tests/modules/misc/nix/empty-settings.nix

14 lines
200 B
Nix
Raw Normal View History

{ config, lib, pkgs, ... }:
with lib;
{
config = {
nix = { package = config.lib.test.mkStubPackage { }; };
nmt.script = ''
assertPathNotExists home-files/.config/nix
'';
};
}