mirror of
https://github.com/nix-community/home-manager
synced 2024-12-25 19:29:47 +01:00
10 lines
216 B
Nix
10 lines
216 B
Nix
{ config, ... }:
|
|
|
|
{
|
|
nix = { package = config.lib.test.mkStubPackage { }; };
|
|
|
|
nmt.script = ''
|
|
assertPathNotExists home-files/.config/nix
|
|
assertPathNotExists home-files/.nix-defexpr/50-home-manager
|
|
'';
|
|
}
|