mirror of
https://github.com/nix-community/home-manager
synced 2025-01-11 19:49:49 +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
|
|
'';
|
|
}
|