nix-files/hosts/common/home/keyring.nix

12 lines
355 B
Nix
Raw Normal View History

{ config, sane-lib, ... }:
{
2023-01-07 02:04:28 +00:00
sane.persist.home.private = [ ".local/share/keyrings" ];
2023-01-30 09:27:19 +00:00
sane.user.fs."private/.local/share/keyrings/default" = {
2023-01-27 07:15:45 +00:00
generated.script.script = builtins.readFile ../../../scripts/init-keyring;
2023-01-30 09:27:19 +00:00
# TODO: is this `wantedBy` needed? can we inherit it?
2023-01-07 02:04:28 +00:00
wantedBy = [ config.sane.fs."/home/colin/private".unit ];
};
}