about summary refs log tree commit diff stats
path: root/sys/svcs/nix
diff options
context:
space:
mode:
authorSoispha <soispha@vhack.eu>2023-10-22 14:43:22 +0200
committerSoispha <soispha@vhack.eu>2023-10-22 14:43:22 +0200
commitdb1f4d664fabc98f001b89859047b9b7447d8b13 (patch)
tree3b500447ddf994a05fb51752dda85efc516f07a9 /sys/svcs/nix
parentfix(hm/conf/firefox/conf/extensions/nmh): Replace phase override (diff)
downloadnixos-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.nix7
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 = {