summaryrefslogtreecommitdiff
path: root/hosts/cloud/span/flake.nix
diff options
context:
space:
mode:
authorpolwex <polwex@sortug.com>2024-07-21 01:49:04 +0700
committerpolwex <polwex@sortug.com>2024-07-21 01:49:04 +0700
commite64f7a78e01e5fa661471cb518cc71fc33223b5a (patch)
tree691c444cf66e2f9d1ee63e4589ed09ec502baa3b /hosts/cloud/span/flake.nix
parent0816d59542658a62928050ef5f08e1460e554959 (diff)
m
Diffstat (limited to 'hosts/cloud/span/flake.nix')
-rw-r--r--hosts/cloud/span/flake.nix16
1 files changed, 16 insertions, 0 deletions
diff --git a/hosts/cloud/span/flake.nix b/hosts/cloud/span/flake.nix
new file mode 100644
index 0000000..b801212
--- /dev/null
+++ b/hosts/cloud/span/flake.nix
@@ -0,0 +1,16 @@
+{
+ inputs.nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
+
+ outputs = { nixpkgs, ... }:
+ {
+ nixosConfigurations.spanmail = nixpkgs.lib.nixosSystem {
+ system = "x86_64-linux";
+ modules = [
+ ./configuration.nix
+ ./users.nix
+ ./packages.nix
+ ./mail.nix
+ ];
+ };
+ };
+}