mirror of
https://codeberg.org/muon/home.git
synced 2025-12-06 16:17:46 +00:00
11 lines
312 B
Nix
11 lines
312 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 = { };
|
|
};
|
|
}
|