2eafb8192e
GitOrigin-RevId: 176e455371a8371586e8a3ff0d56ee9f3ca2324e
13 lines
200 B
Nix
13 lines
200 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
with lib;
|
|
|
|
{
|
|
config = {
|
|
nix = { package = config.lib.test.mkStubPackage { }; };
|
|
|
|
nmt.script = ''
|
|
assertPathNotExists home-files/.config/nix
|
|
'';
|
|
};
|
|
}
|