Add nextcloud client
This commit is contained in:
6
desktop-environment/application-browser.nix
Normal file
6
desktop-environment/application-browser.nix
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
{ pkgs, ... }:
|
||||||
|
{
|
||||||
|
environment.systemPackages = with pkgs; [
|
||||||
|
# New system packages
|
||||||
|
];
|
||||||
|
}
|
||||||
@@ -3,6 +3,7 @@
|
|||||||
|
|
||||||
imports = [
|
imports = [
|
||||||
./browser.nix
|
./browser.nix
|
||||||
|
./planner.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
programs.hyprland = {
|
programs.hyprland = {
|
||||||
|
|||||||
6
desktop-environment/file-browser.nix
Normal file
6
desktop-environment/file-browser.nix
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
{ pkgs, ... }:
|
||||||
|
{
|
||||||
|
environment.systemPackages = with pkgs; [
|
||||||
|
# New system packages
|
||||||
|
];
|
||||||
|
}
|
||||||
39
desktop-environment/planner.nix
Normal file
39
desktop-environment/planner.nix
Normal 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;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
||||||
6
desktop-environment/status-bar.nix
Normal file
6
desktop-environment/status-bar.nix
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
{ pkgs, ... }:
|
||||||
|
{
|
||||||
|
environment.systemPackages = with pkgs; [
|
||||||
|
# New system packages
|
||||||
|
];
|
||||||
|
}
|
||||||
6
desktop-environment/terminal-emulator.nix
Normal file
6
desktop-environment/terminal-emulator.nix
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
{ pkgs, ... }:
|
||||||
|
{
|
||||||
|
environment.systemPackages = with pkgs; [
|
||||||
|
# New system packages
|
||||||
|
];
|
||||||
|
}
|
||||||
6
desktop-environment/window-manager.nix
Normal file
6
desktop-environment/window-manager.nix
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
{ pkgs, ... }:
|
||||||
|
{
|
||||||
|
environment.systemPackages = with pkgs; [
|
||||||
|
# New system packages
|
||||||
|
];
|
||||||
|
}
|
||||||
6
desktop-environment/workspace-manager.nix
Normal file
6
desktop-environment/workspace-manager.nix
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
{ pkgs, ... }:
|
||||||
|
{
|
||||||
|
environment.systemPackages = with pkgs; [
|
||||||
|
# New system packages
|
||||||
|
];
|
||||||
|
}
|
||||||
@@ -1,5 +1,10 @@
|
|||||||
{ pkgs, ... }:
|
{ pkgs, ... }:
|
||||||
{
|
{
|
||||||
|
|
||||||
|
imports = [
|
||||||
|
./file-system.nix
|
||||||
|
];
|
||||||
|
|
||||||
environment.systemPackages = with pkgs; [
|
environment.systemPackages = with pkgs; [
|
||||||
# Make systems
|
# Make systems
|
||||||
gnumake
|
gnumake
|
||||||
|
|||||||
12
system-environment/file-system.nix
Normal file
12
system-environment/file-system.nix
Normal file
@@ -0,0 +1,12 @@
|
|||||||
|
{ pkgs, ... }:
|
||||||
|
{
|
||||||
|
|
||||||
|
environment.systemPackages = with pkgs; [
|
||||||
|
nextcloud-client
|
||||||
|
];
|
||||||
|
|
||||||
|
environment.variables = {
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user