mirror of
https://github.com/nix-community/home-manager.git
synced 2025-11-08 19:46:05 +01:00
11 lines
158 B
Nix
11 lines
158 B
Nix
{ config, ... }:
|
|
|
|
{
|
|
nix = {
|
|
package = config.lib.test.mkStubPackage { };
|
|
};
|
|
|
|
nmt.script = ''
|
|
assertPathNotExists home-files/.config/nix
|
|
'';
|
|
}
|