woot. got a working build again

This commit is contained in:
Chris Kruining 2025-07-28 11:20:21 +02:00
parent d700126642
commit ff0a8c5b1b
No known key found for this signature in database
GPG key ID: EB894A3560CCCAD2
16 changed files with 73 additions and 89 deletions

View file

@ -1,22 +0,0 @@
{ pkgs, config, namespace, inputs, ... }:
let
cfg = config.${namespace}.system.security.sops;
in
{
imports = [
inputs.sops-nix.nixosModules.sops
];
options.${namespace}.system.security.sops = {};
config = {
environment.systemPackages = with pkgs; [ sops ];
sops = {
defaultSopsFile = ../../../../secrets/secrets.yaml;
defaultSopsFormat = "yaml";
age.keyFile = "/home/";
};
};
}