From 10ce933cf82e75b8e01506606d9df9a001e7ccd8 Mon Sep 17 00:00:00 2001 From: Eric Torres Date: Sun, 2 Nov 2025 01:24:52 -0700 Subject: [PATCH] flake.nix: add host riv-01 --- flake.nix | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/flake.nix b/flake.nix index 1ae456b..fe9090a 100644 --- a/flake.nix +++ b/flake.nix @@ -349,6 +349,33 @@ ]; }; + riv-01 = lib.nixosSystem { + specialArgs = { + inherit inputs pkgsUnstable; + hostname = "riv-01"; + stateversion = "25.05"; + }; + modules = [ + ./configuration.nix + inputs.comin.nixosModules.comin + ( + { ... }: + { + services.comin = { + enable = true; + remotes = [ + { + name = "origin"; + url = "https://git.its-et.me/etorres/nixos.git"; + branches.main.name = "main"; + } + ]; + }; + } + ) + ]; + }; + test-nixos = lib.nixosSystem { specialArgs = { inherit inputs pkgsUnstable;