os/modules/nextcloud/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

15 lines
208 B
Nix
Raw Normal View History

2023-01-28 21:49:10 +01:00
{
lib,
config,
pkgs,
...
}:
let
2021-05-30 21:10:28 +02:00
psCfg = config.pub-solar;
2023-01-28 21:49:10 +01:00
in
{
home-manager.users."${psCfg.user.name}" = {
systemd.user.services.nextcloud-client = import ./nextcloud.service.nix pkgs;
2021-05-30 21:10:28 +02:00
};
}