jellyfin and others

This commit is contained in:
Markus Heurung 2025-04-11 13:13:32 +02:00
parent 326acd2c65
commit 47456417f7
10 changed files with 228 additions and 94 deletions

27
modules/sops/default.nix Normal file
View file

@ -0,0 +1,27 @@
{ inputs, pkgs, config, home, ... }: {
# imports = [
# inputs.sops.homeManagerModules.sops
# ];
home.packages = with pkgs; [
sops
];
sops = {
age.keyFile = "${config.xdg.configHome}/sops/age/keys.txt";
defaultSopsFile = ./secrets/secrets.yaml;
secrets = {
atuin_key = {};
"mail/privat/address" = {};
"mail/privat/username" = {};
"mail/privat/password" = {};
"mail/icloud/address" = {};
"mail/icloud/username" = {};
"mail/icloud/password" = {};
tailscale_auth_key = {};
};
};
# sops.defaultSopsFile = ../modules/sops/secrets/secrets.yaml;
# sops.age.keyFile = "/home/muhh/.config/sops/age/keys.txt";
}