1

Modules: Add sops-nix module

This commit is contained in:
2025-07-09 15:36:40 +02:00
parent 8fcddf1f37
commit 789f068fea
5 changed files with 30 additions and 4 deletions

View File

@ -0,0 +1,15 @@
{
config,
lib,
mylib,
pkgs,
...
}: let
inherit (config.modules) sops;
in {
options.modules.sops = import ./options.nix {inherit lib mylib;};
config = {
environment.systemPackages = [pkgs.sops];
};
}