Add flameshot auth

This commit is contained in:
muon 2025-01-19 20:26:22 +00:00
parent 162061ddd3
commit 6ed9e76165
7 changed files with 82 additions and 10 deletions

View file

@ -0,0 +1,10 @@
{ pkgs, lib, config, inputs, system, ... }:
let cfg = config.mods;
in with lib; {
imports = [ inputs.sops-nix.homeManagerModules.sops ];
sops = {
age.keyFile = "/home/muon/.config/sops/age/keys.txt";
defaultSopsFile = ./secrets.yaml;
secrets.zipline-auth = { };
};
}