mirror of
https://codeberg.org/muon/home.git
synced 2025-12-06 08:07:45 +00:00
Add muin install host
This commit is contained in:
parent
23c45b8800
commit
4750f4ea9d
9 changed files with 375 additions and 95 deletions
|
|
@ -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 = {};
|
||||
};
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue