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 /flake/default.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 'flake/default.nix')
-rw-r--r-- | flake/default.nix | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/flake/default.nix b/flake/default.nix index c98b8bd3..26944cf8 100644 --- a/flake/default.nix +++ b/flake/default.nix @@ -5,6 +5,7 @@ system, sysLib, nixpkgs_as_input, + my_flake_as_input, # modules home-manager, nixNeovim, @@ -76,7 +77,16 @@ serverphone.nixosModules.default ]; defaultSpecialArgs = { - inherit templates sysLib serverphone system nixpkgs_as_input; + inherit + templates + sysLib + serverphone + system + # nix registry + + nixpkgs_as_input + my_flake_as_input + ; }; in { nixosConfigurations = import ./nixosConfigurations { |