mirror of
https://github.com/nix-community/home-manager.git
synced 2026-01-12 01:59:37 +08:00
13 lines
222 B
Nix
13 lines
222 B
Nix
{ config, ... }:
|
|
|
|
{
|
|
nix = {
|
|
package = config.lib.test.mkStubPackage { };
|
|
};
|
|
|
|
nmt.script = ''
|
|
assertPathNotExists home-files/.config/nix
|
|
assertPathNotExists home-files/.nix-defexpr/50-home-manager
|
|
'';
|
|
}
|