Files
nix-config/homes/x86_64-linux/admin@nuc-nixos/default.nix
mjallen18 0012a019fc upd
2025-12-14 20:33:39 -06:00

30 lines
611 B
Nix
Executable File

{ pkgs, ... }:
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 ];
};
};
}