mirror of
https://codeberg.org/muon/home.git
synced 2025-12-05 23:57:46 +00:00
21 lines
401 B
Nix
21 lines
401 B
Nix
{
|
|
pkgs,
|
|
lib,
|
|
config,
|
|
inputs,
|
|
system,
|
|
...
|
|
}: let
|
|
cfg = config.mods;
|
|
in
|
|
with lib; {
|
|
imports = [inputs.sops-nix.homeManagerModules.sops];
|
|
sops = {
|
|
age.keyFile = "/persist/var/lib/sops-nix/key.txt";
|
|
defaultSopsFile = ./secrets.yaml;
|
|
secrets.zipline-auth = {};
|
|
secrets.atuin-auth = {};
|
|
secrets.hr-password = {};
|
|
secrets.sops-key = {};
|
|
};
|
|
}
|