Add selfhosted services

This commit is contained in:
aloslider
2026-06-30 04:26:40 +03:00
parent f212c874b5
commit 13e407847f
78 changed files with 2346 additions and 690 deletions
+18
View File
@@ -0,0 +1,18 @@
{ config, dotfiles, sops-nix, ... }:
{
imports = [
sops-nix.homeManagerModules.sops
];
sops = {
defaultSopsFile = "${dotfiles}/dot_config/sops/secrets.yaml";
age.keyFile = "${config.xdg.configHome}/sops/age/keys.txt";
};
home.file.".sops.yaml".source = "${dotfiles}/dot_sops.yaml";
xdg.configFile."sops" = {
source = "${dotfiles}/dot_config/sops";
recursive = true;
};
}