From 28aba14fee3806839dcec50a95fd616476597f86 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Ram=C3=ADrez?= Date: Mon, 25 Nov 2024 19:58:17 -0400 Subject: [PATCH] Add Rosenpass NixOS services and missing example (#430) --- projects/Rosenpass/default.nix | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/projects/Rosenpass/default.nix b/projects/Rosenpass/default.nix index 6c601f9ac..29d684717 100644 --- a/projects/Rosenpass/default.nix +++ b/projects/Rosenpass/default.nix @@ -3,8 +3,13 @@ lib, sources, } @ args: { - packages = {inherit (pkgs) rosenpass rosenpass-tools;}; + packages = { + inherit (pkgs) rosenpass rosenpass-tools; + }; nixos = { - tests.rosenpass = import ./tests args; + modules.services.rosenpass = "${sources.inputs.nixpkgs}/nixos/modules/services/networking/rosenpass.nix"; + tests.with-sops = import ./tests args; + tests.without-sops = "${sources.inputs.nixpkgs}/nixos/tests/rosenpass.nix"; + examples = null; }; }