modules/nix-register-flakes: rework some registry stuff
This commit is contained in:
parent
21b1f3a93c
commit
237ead528e
1 changed files with 13 additions and 1 deletions
|
@ -10,7 +10,12 @@ with inputs;
|
|||
|
||||
nix.registry = {
|
||||
system.flake = self;
|
||||
nixpkgs.flake = nixpkgs;
|
||||
nixpkgs.to = {
|
||||
owner = "NixOS";
|
||||
repo = "nixpkgs";
|
||||
rev = nixpkgs.rev;
|
||||
type = "github";
|
||||
};
|
||||
default.flake = nixpkgs;
|
||||
home-manager.flake = home-manager;
|
||||
vim.flake = let
|
||||
|
@ -31,6 +36,13 @@ with inputs;
|
|||
host = "git.privatevoid.net";
|
||||
type = "gitlab";
|
||||
};
|
||||
config.to = {
|
||||
owner = "max";
|
||||
repo = "config";
|
||||
ref = "master";
|
||||
host = "git.privatevoid.net";
|
||||
type = "gitlab";
|
||||
};
|
||||
};
|
||||
|
||||
environment.etc = {
|
||||
|
|
Loading…
Reference in a new issue