mirror of
https://github.com/nix-community/home-manager
synced 2024-12-26 19:59:47 +01:00
21 lines
328 B
Nix
21 lines
328 B
Nix
{ ... }:
|
|
|
|
{
|
|
nix = {
|
|
registry = {
|
|
nixpkgs = {
|
|
to = {
|
|
type = "github";
|
|
owner = "my-org";
|
|
repo = "my-nixpkgs";
|
|
};
|
|
};
|
|
};
|
|
};
|
|
|
|
nmt.script = ''
|
|
assertFileContent \
|
|
home-files/.config/nix/registry.json \
|
|
${./example-registry-expected.json}
|
|
'';
|
|
}
|