Add muin install host

This commit is contained in:
muon 2025-08-04 09:04:27 +00:00
parent 23c45b8800
commit 4750f4ea9d
9 changed files with 375 additions and 95 deletions

View file

@ -1,12 +1,21 @@
{ 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 = { };
};
}
{
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 = {};
};
}