Add nextcloud client

This commit is contained in:
2026-02-26 00:47:55 +01:00
parent 9b4605fdce
commit f99d3e534b
10 changed files with 93 additions and 0 deletions

View File

@@ -0,0 +1,6 @@
{ pkgs, ... }:
{
environment.systemPackages = with pkgs; [
# New system packages
];
}

View File

@@ -3,6 +3,7 @@
imports = [
./browser.nix
./planner.nix
];
programs.hyprland = {

View File

@@ -0,0 +1,6 @@
{ pkgs, ... }:
{
environment.systemPackages = with pkgs; [
# New system packages
];
}

View File

@@ -0,0 +1,39 @@
{ config, pkgs, lib, ... }:
let
tbProfile = pkgs.stdenv.mkDerivation {
name = "thunderbird-profile";
src = ./thunderbird-profile;
installPhase = ''
mkdir -p $out
cp -r . $out/
'';
};
in
{
environment.systemPackages = with pkgs; [
# New system packages
];
programs.thunderbird = {
enable = true;
package = pkgs.thunderbird;
policies = {
DisableTelemetry = true;
DisableAppUpdate = true;
EnableOpenPGP = true;
Preferences = {
"mail.provider.enabled" = false;
"mail.openpgp.allow_external_gnupg" = true;
"calendar.timezone.local" = "Europe/Berlin";
};
Certificates = {
ImportEnterpriseRoots = true;
};
};
};
}

View File

@@ -0,0 +1,6 @@
{ pkgs, ... }:
{
environment.systemPackages = with pkgs; [
# New system packages
];
}

View File

@@ -0,0 +1,6 @@
{ pkgs, ... }:
{
environment.systemPackages = with pkgs; [
# New system packages
];
}

View File

@@ -0,0 +1,6 @@
{ pkgs, ... }:
{
environment.systemPackages = with pkgs; [
# New system packages
];
}

View File

@@ -0,0 +1,6 @@
{ pkgs, ... }:
{
environment.systemPackages = with pkgs; [
# New system packages
];
}