dotfiles/nixos/i3/openweathermap-secrets.nix

12 lines
289 B
Nix
Raw Normal View History

2022-06-04 12:51:36 +01:00
{ config, pkgs, ... }:
{
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;
};
home-manager.users.cyryl = { home.sessionVariables = { }; };
}