diff --git a/flake.nix b/flake.nix index 228bd3f..5f1f03a 100644 --- a/flake.nix +++ b/flake.nix @@ -37,6 +37,33 @@ }; nixosConfigurations = { + app-01 = lib.nixosSystem { + specialArgs = { + inherit inputs pkgsUnstable; + hostname = "app-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"; + } + ]; + }; + } + ) + ]; + }; + borg-01 = lib.nixosSystem { specialArgs = { inherit inputs pkgsUnstable;