dotfiles/nixos/i3/openweathermap-secrets.nix

12 lines
287 B
Nix
Raw Normal View History

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