nix-configs/modules/desktop/cloud.nix

34 lines
752 B
Nix
Raw Normal View History

2023-02-13 11:54:21 +00:00
{ config, lib, pkgs, ... }:
let cfg = config.jade.desktop.cloud;
in with lib; {
options.jade.desktop.cloud = {
enable = mkEnableOption "Enable cloud things";
};
config = mkIf cfg.enable {
home-manager.users.jade = { pkgs, ... }: {
services.nextcloud-client = {
enable = true;
startInBackground = true;
};
programs.rbw = {
enable = true;
settings = {
base_url = "vw.schrottkatze.de";
email = "jade@schrottkatze.de";
};
};
home.packages = with pkgs; [
fluent-reader
bitwarden
rofi-rbw
];
xsession.windowManager.i3.config.startup = [
{
command = "bitwarden";
}
];
};
};
}