diff options
author | Soispha <soispha@vhack.eu> | 2023-10-22 14:43:22 +0200 |
---|---|---|
committer | Soispha <soispha@vhack.eu> | 2023-10-22 14:43:22 +0200 |
commit | db1f4d664fabc98f001b89859047b9b7447d8b13 (patch) | |
tree | 3b500447ddf994a05fb51752dda85efc516f07a9 /sys/svcs/nix | |
parent | fix(hm/conf/firefox/conf/extensions/nmh): Replace phase override (diff) | |
download | nixos-config-db1f4d664fabc98f001b89859047b9b7447d8b13.tar.gz nixos-config-db1f4d664fabc98f001b89859047b9b7447d8b13.zip |
feat(sys/svcs/nix): Add my flake to the flake registry
Diffstat (limited to 'sys/svcs/nix')
-rw-r--r-- | sys/svcs/nix/default.nix | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/sys/svcs/nix/default.nix b/sys/svcs/nix/default.nix index 97b7220d..4faafc92 100644 --- a/sys/svcs/nix/default.nix +++ b/sys/svcs/nix/default.nix @@ -1,10 +1,13 @@ { pkgs, + # flakes nixpkgs_as_input, templates, + my_flake_as_input, ... }: let nixpkgs = nixpkgs_as_input; + my_flake = my_flake_as_input; in { nix = { package = pkgs.nixStable; @@ -12,7 +15,11 @@ in { registry = { nixpkgs.flake = nixpkgs; n.flake = nixpkgs; + t.flake = templates; + + my_flake.flake = my_flake; + m.flake = my_flake; }; gc = { |