mirror of
https://github.com/Swarsel/.dotfiles.git
synced 2025-12-06 09:07:21 +01:00
14 lines
516 B
Nix
14 lines
516 B
Nix
{ config, ... }:
|
|
{
|
|
sops = {
|
|
defaultSopsFile = "${config.home.homeDirectory}/.dotfiles/secrets/general/secrets.yaml";
|
|
validateSopsFiles = false;
|
|
secrets = {
|
|
mrswarsel = { path = "/run/user/1000/secrets/mrswarsel"; };
|
|
nautilus = { path = "/run/user/1000/secrets/nautilus"; };
|
|
leon = { path = "/run/user/1000/secrets/leon"; };
|
|
swarselmail = { path = "/run/user/1000/secrets/swarselmail"; };
|
|
caldav = { path = "${config.home.homeDirectory}/.emacs.d/.caldav"; };
|
|
};
|
|
};
|
|
}
|