aboutsummaryrefslogtreecommitdiff
path: root/flake.nix
diff options
context:
space:
mode:
Diffstat (limited to 'flake.nix')
-rw-r--r--flake.nix9
1 files changed, 8 insertions, 1 deletions
diff --git a/flake.nix b/flake.nix
index 808dbfc..609f5ca 100644
--- a/flake.nix
+++ b/flake.nix
@@ -3,6 +3,11 @@
nixpkgs.url = "github:nixos/nixpkgs/nixos-23.05";
flake-parts.url = "github:hercules-ci/flake-parts";
nixinate.url = "github:maxaudron/nixinate";
+
+ secrets = {
+ url = "git+ssh://git@gitlab.com/cocainefarm/k8s/secrets";
+ flake = false;
+ };
};
outputs = inputs@{ self, nixpkgs, flake-parts, nixinate, ... }:
@@ -11,7 +16,9 @@
flake =
let
system = "x86_64-linux";
- specialArgs = inputs // { nodes = self.nixosConfigurations; };
+ specialArgs = inputs // {
+ nodes = self.nixosConfigurations;
+ };
mkSystem = modules: nixpkgs.lib.nixosSystem {
inherit specialArgs system;
modules = modules;