1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- {
- description = "C3D2 NixOS configurations";
-
- inputs = {
- nixpkgs.follows = "hydra/nixpkgs";
- # nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
- # secrets.url = "git+file:///etc/nixos/secrets";
- };
-
- outputs = { self, nixpkgs, hydra }: {
-
- nixosConfigurations = {
-
- glotzbert = nixpkgs.lib.nixosSystem {
- modules = [ ./hosts/glotzbert/configuration.nix ];
- system = "x86_64-linux";
- };
-
- hydra = nixpkgs.lib.nixosSystem {
- modules = [ ./hosts/hydra/configuration.nix ];
- system = "x86_64-linux";
- };
-
- kibana = nixpkgs.lib.nixosSystem {
- modules = [ ./hosts/containers/kibana/configuration.nix ];
- system = "x86_64-linux";
- };
-
- pulsebert = nixpkgs.lib.nixosSystem {
- modules = [ ./hosts/pulsebert/configuration.nix ];
- system = "aarch64-linux";
- };
-
- server7 = nixpkgs.lib.nixosSystem {
- modules = [ ./hosts/server7 hydra.nixosModules.hydra ];
- system = "x86_64-linux";
- };
-
- };
-
- nixosModules.c3d2 = import ./lib;
-
- };
- }
|