summaryrefslogtreecommitdiff
path: root/flake.nix
diff options
context:
space:
mode:
Diffstat (limited to 'flake.nix')
-rw-r--r--flake.nix13
1 files changed, 11 insertions, 2 deletions
diff --git a/flake.nix b/flake.nix
index d57e5ee..4e6de69 100644
--- a/flake.nix
+++ b/flake.nix
@@ -34,12 +34,12 @@
outputs =
inputs@{ self
, flake-utils
+ , lanzaboote
, microvm
+ , nixos-hardware
, nixpkgs-stable
, nixpkgs-unstable
, sops-nix
- , nixos-hardware
- , lanzaboote
, ...
}:
@@ -68,6 +68,15 @@
./modules/chromium.nix
];
};
+ cloud = nixpkgs-stable.lib.nixosSystem {
+ system = "x86_64-linux";
+ specialArgs = { inherit inputs; };
+ moudles = [
+ sops-nix.nixosModules.sops
+
+ ./hosts/cloud
+ ];
+ };
};
};
}