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