summaryrefslogtreecommitdiff
path: root/flake.nix
diff options
context:
space:
mode:
authorGrisha Shipunov2025-01-12 21:32:36 +0100
committerGrisha Shipunov2025-01-12 21:32:36 +0100
commitbd44fc6fcb1fe3df7b8a8c81839e34470fed7911 (patch)
treef1a6118da93cac4f533bb001ccbb43ff18366ef3 /flake.nix
parentea46b0bb1edd0c76f9c6cf9dfcc905396e9f66b1 (diff)
authentik: init
Diffstat (limited to 'flake.nix')
-rw-r--r--flake.nix15
1 files changed, 3 insertions, 12 deletions
diff --git a/flake.nix b/flake.nix
index 81d4a40..05582f4 100644
--- a/flake.nix
+++ b/flake.nix
@@ -108,7 +108,7 @@
};
authentik = nixpkgs-stable.lib.nixosSystem {
- system = "x84_64-linux";
+ system = "x86_64-linux";
specialArgs = { inherit inputs; };
modules = [
sops-nix.nixosModules.sops
@@ -117,17 +117,8 @@
./microvms/authentik
./modules/server
+ ];
+ };
};
-
-
- hydraJobs =
- let
- get-toplevel = (
- host: nixSystem: nixSystem.config.microvm.declaredRunner or nixSystem.config.system.build.toplevel
- );
- in
- nixpkgs-stable.lib.mapAttrs get-toplevel self.nixosConfigurations;
-
- formatter.x86_64-linux = nixpkgs-stable.legacyPackages.x86_64-linux.nixfmt-rfc-style;
};
}