Replace homeage with sops-nix

This commit is contained in:
Pim Kunis 2024-06-15 18:10:55 +02:00
parent 03608f96d7
commit 5d752cb279
12 changed files with 44 additions and 99 deletions

View file

@ -1,10 +0,0 @@
{ pkgs, config, flake, ... }: {
config = {
home.packages = [ pkgs.unstable.keepassxc ];
homeage.file."keepassxc.ini" = {
source = "${flake}/secrets/keepassxc.ini.age";
symlinks = [ "${config.xdg.configHome}/keepassxc/keepassxc.ini" ];
};
};
}

View file

@ -1,15 +0,0 @@
{ config, flake, ... }: {
config = {
services.syncthing.enable = true;
homeage.file."syncthing-key.pem" = {
source = "${flake}/secrets/syncthing-key.pem.age";
symlinks = [ "${config.xdg.configHome}/syncthing/key.pem" ];
};
homeage.file."syncthing-cert.pem" = {
source = "${flake}/secrets/syncthing-cert.pem.age";
symlinks = [ "${config.xdg.configHome}/syncthing/cert.pem" ];
};
};
}