dotfiles/nixos/i3/openweathermap-secrets.nix

14 lines
291 B
Nix
Raw Normal View History

2022-06-04 12:51:36 +01:00
{
2022-12-19 09:09:08 +00:00
config,
pkgs,
...
}: {
2022-06-04 12:51:36 +01:00
sops.secrets.openweathermap-api-key = {
2022-11-08 17:06:20 +00:00
inherit (config.users.users.cyryl) group;
2022-06-04 12:51:36 +01:00
mode = "0440";
owner = config.users.users.cyryl.name;
sopsFile = ./openweathermap.sops.yaml;
};
2022-12-19 09:09:08 +00:00
home-manager.users.cyryl = {home.sessionVariables = {};};
2022-06-04 12:51:36 +01:00
}