diff options
author | TheArcaneBrony <myrainbowdash949@gmail.com> | 2023-01-02 02:00:40 +0100 |
---|---|---|
committer | TheArcaneBrony <myrainbowdash949@gmail.com> | 2023-01-02 02:00:40 +0100 |
commit | 380f263c26d89ce020e727fb65bae8b457fa30bb (patch) | |
tree | 56e69b7b263c4e9bf57420066ad97f9952983620 | |
parent | Fix typo in flake (diff) | |
download | Rory-Open-Architecture-380f263c26d89ce020e727fb65bae8b457fa30bb.tar.xz |
Fix missing import
Signed-off-by: TheArcaneBrony <myrainbowdash949@gmail.com>
-rw-r--r-- | flake.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/flake.nix b/flake.nix index 495098d..e8786d6 100644 --- a/flake.nix +++ b/flake.nix @@ -18,7 +18,7 @@ # Outputs can be anything, but the wiki + some commands define their own # specific keys. Wiki page: https://nixos.wiki/wiki/Flakes#Output_schema - outputs = { self, nixpkgs, botcore-v4 }: { + outputs = { self, nixpkgs, botcore-v4, discord-client-proxy }: { # nixosConfigurations is the key that nixos-rebuild looks for. nixosConfigurations = { Rory-discordbots = nixpkgs.lib.nixosSystem { |