30 lines
627 B
Nix
Executable File
30 lines
627 B
Nix
Executable File
{ lib, pkgs, namespace, ... }:
|
|
let
|
|
inherit (lib.${namespace}) enabled disabled;
|
|
in
|
|
{
|
|
home.username = "admin";
|
|
|
|
# Configure systemd user service for protonmail-bridge
|
|
systemd.user.services.protonmail-bridge = {
|
|
Service = {
|
|
Environment = [
|
|
"GNUPGHOME=/home/admin/.gnupg"
|
|
"PASSWORD_STORE_DIR=/home/admin/.local/password-store"
|
|
];
|
|
};
|
|
};
|
|
|
|
services = {
|
|
nextcloud-client = lib.mkForce disabled;
|
|
kdeconnect = {
|
|
enable = false;
|
|
indicator = false;
|
|
};
|
|
protonmail-bridge = {
|
|
enable = true;
|
|
extraPackages = with pkgs; [ pass libsecret ];
|
|
};
|
|
};
|
|
}
|