summaryrefslogtreecommitdiff
path: root/hosts/cloud/spanm/flake.nix
diff options
context:
space:
mode:
authorpolwex <polwex@sortug.com>2024-07-21 01:09:48 +0700
committerpolwex <polwex@sortug.com>2024-07-21 01:09:48 +0700
commit78907aa98c1af8624a62ca123d088c6c16424f41 (patch)
tree477fe923810522acc211b7514e4931af80f33ed7 /hosts/cloud/spanm/flake.nix
init
Diffstat (limited to 'hosts/cloud/spanm/flake.nix')
-rw-r--r--hosts/cloud/spanm/flake.nix16
1 files changed, 16 insertions, 0 deletions
diff --git a/hosts/cloud/spanm/flake.nix b/hosts/cloud/spanm/flake.nix
new file mode 100644
index 0000000..b801212
--- /dev/null
+++ b/hosts/cloud/spanm/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
+ ];
+ };
+ };
+}