diff options
| author | Grigory Shipunov | 2023-06-01 20:43:57 +0200 |
|---|---|---|
| committer | Grigory Shipunov | 2023-06-16 14:58:39 +0200 |
| commit | bcdd3fe2e4b5dd00f2799a4f349baf910a113188 (patch) | |
| tree | d8c8cce948141e62c6e86480815a4025713cfe04 | |
| parent | 2088d04d8733ec94ce42452f4b0f63b1f6d4fa24 (diff) | |
add noctilucent
| -rw-r--r-- | flake.nix | 14 | ||||
| -rw-r--r-- | hosts/noctilucent/default.nix | 1 |
2 files changed, 15 insertions, 0 deletions
@@ -160,6 +160,20 @@ ./modules/server ]; }; + + noctilucent = nixpkgs.lib.nixosSystem { + system = "x86_64-linux"; + specialArgs = { inherit inputs; }; + modules = [ + sops-nix.nixosModules.sops + + ./hosts/noctilucent + ./modules/server + + ./modules/basic-tools + ./modules/binary-caches.nix + ]; + }; }; hydraJobs = diff --git a/hosts/noctilucent/default.nix b/hosts/noctilucent/default.nix new file mode 100644 index 0000000..0967ef4 --- /dev/null +++ b/hosts/noctilucent/default.nix @@ -0,0 +1 @@ +{} |
