From d63152c90e6913992ba003deeb285758224f58a4 Mon Sep 17 00:00:00 2001 From: Ashelyn Rose Date: Tue, 23 May 2023 23:03:41 -0600 Subject: [PATCH] Add flake-based configuration --- flake.lock | 130 +++++++++++++++++++++++++++++++++++++++++++++++++++++ flake.nix | 32 +++++++++++++ 2 files changed, 162 insertions(+) create mode 100644 flake.lock create mode 100644 flake.nix diff --git a/flake.lock b/flake.lock new file mode 100644 index 0000000..73a86b3 --- /dev/null +++ b/flake.lock @@ -0,0 +1,130 @@ +{ + "nodes": { + "naersk": { + "inputs": { + "nixpkgs": "nixpkgs_2" + }, + "locked": { + "lastModified": 1679567394, + "narHash": "sha256-ZvLuzPeARDLiQUt6zSZFGOs+HZmE+3g4QURc8mkBsfM=", + "owner": "nix-community", + "repo": "naersk", + "rev": "88cd22380154a2c36799fe8098888f0f59861a15", + "type": "github" + }, + "original": { + "owner": "nix-community", + "repo": "naersk", + "type": "github" + } + }, + "nixpkgs": { + "locked": { + "lastModified": 1684661732, + "narHash": "sha256-2/Xo/UmUUoMXc0T5tzoUsYjMLLMjEfzRWDAQB0WwtW0=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "b0671cbf1e5c443f7fbfd4941ee0f8a151435114", + "type": "github" + }, + "original": { + "owner": "NixOS", + "ref": "nixos-22.11", + "repo": "nixpkgs", + "type": "github" + } + }, + "nixpkgs_2": { + "locked": { + "lastModified": 1684759798, + "narHash": "sha256-Kpbf5yKvKcj/yPqE1zYC6gju4JwTsYxTIZEvOII0jr4=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "c7eb65213bd7d95eafb8c5e2e181f04da103d054", + "type": "github" + }, + "original": { + "id": "nixpkgs", + "type": "indirect" + } + }, + "nixpkgs_3": { + "locked": { + "lastModified": 1684759798, + "narHash": "sha256-Kpbf5yKvKcj/yPqE1zYC6gju4JwTsYxTIZEvOII0jr4=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "c7eb65213bd7d95eafb8c5e2e181f04da103d054", + "type": "github" + }, + "original": { + "owner": "NixOS", + "ref": "nixpkgs-unstable", + "repo": "nixpkgs", + "type": "github" + } + }, + "root": { + "inputs": { + "nixpkgs": "nixpkgs", + "tmpfiles": "tmpfiles" + } + }, + "systems": { + "locked": { + "lastModified": 1681028828, + "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=", + "owner": "nix-systems", + "repo": "default", + "rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e", + "type": "github" + }, + "original": { + "owner": "nix-systems", + "repo": "default", + "type": "github" + } + }, + "tmpfiles": { + "inputs": { + "naersk": "naersk", + "nixpkgs": "nixpkgs_3", + "utils": "utils" + }, + "locked": { + "lastModified": 1684903753, + "narHash": "sha256-tVcp+GGKB/XsJRr80WsWaCDog/QtInJ7hLRapX/uj3Y=", + "ref": "refs/tags/v0.1.0", + "rev": "5d811ec353d8eea3c3150ca405593cb5a38b8b5d", + "revCount": 24, + "type": "git", + "url": "http://git.tempest.dev/ashe/tmpfiles" + }, + "original": { + "ref": "refs/tags/v0.1.0", + "type": "git", + "url": "http://git.tempest.dev/ashe/tmpfiles" + } + }, + "utils": { + "inputs": { + "systems": "systems" + }, + "locked": { + "lastModified": 1681202837, + "narHash": "sha256-H+Rh19JDwRtpVPAWp64F+rlEtxUWBAQW28eAi3SRSzg=", + "owner": "numtide", + "repo": "flake-utils", + "rev": "cfacdce06f30d2b68473a46042957675eebb3401", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "flake-utils", + "type": "github" + } + } + }, + "root": "root", + "version": 7 +} diff --git a/flake.nix b/flake.nix new file mode 100644 index 0000000..8ab1681 --- /dev/null +++ b/flake.nix @@ -0,0 +1,32 @@ +{ + inputs = { + nixpkgs.url = "github:NixOS/nixpkgs/nixos-22.11"; + tmpfiles.url = "git+http://git.tempest.dev/ashe/tmpfiles?ref=refs/tags/v0.1.0"; + }; + + outputs = { self, nixpkgs, tmpfiles }: { + nixosConfigurations = { + + nyx = nixpkgs.lib.nixosSystem { + system = "x86_64-linux"; + modules = [ + ./hosts/nyx/configuration.nix + + tmpfiles.nixosModule + ({ pkgs, ...}: { + networking.firewall.allowedTCPPorts = [ 80 443 ]; + + services.nginx.enable = true; + security.acme.acceptTerms = true; + security.acme.defaults.email = "acme@tempest.dev"; + + ashe.services.tmpfiles.enable = true; + ashe.services.tmpfiles.domain = "files.tempest.dev"; + ashe.services.tmpfiles.port = 4441; + }) + ]; + }; + + }; + }; +}