2024-07-25 07:44:36 +01:00
|
|
|
{pkgs, ...}: {
|
2024-07-03 07:15:39 +01:00
|
|
|
imports = [
|
|
|
|
# Programs
|
|
|
|
./desktop/default.nix
|
|
|
|
./shell/default.nix
|
|
|
|
./emacs/default.nix
|
|
|
|
./browser/default.nix
|
|
|
|
# Services
|
2024-07-08 08:58:32 +01:00
|
|
|
./services/email/default.nix
|
2024-07-03 07:15:39 +01:00
|
|
|
./services/password-store/default.nix
|
|
|
|
# Additional Scripts
|
|
|
|
./scripts/default.nix
|
|
|
|
];
|
2024-07-25 07:46:49 +01:00
|
|
|
home.packages = with pkgs; [
|
2024-07-25 07:44:36 +01:00
|
|
|
libreoffice-fresh
|
|
|
|
inkscape
|
|
|
|
webcord
|
2024-07-28 09:09:07 +01:00
|
|
|
signal-desktop
|
2024-07-25 07:44:36 +01:00
|
|
|
whatsapp-for-linux
|
|
|
|
teams-for-linux
|
|
|
|
];
|
|
|
|
xdg.configFile = {
|
|
|
|
"autostart/com.github.eneshecan.WhatsAppForLinux.desktop".source = "${pkgs.whatsapp-for-linux}/share/applications/com.github.eneshecan.WhatsAppForLinux.desktop";
|
|
|
|
"teams-for-linux/config.json".text = builtins.toJSON {
|
|
|
|
awayOnSystemIdle = true;
|
|
|
|
closeAppOnCross = true;
|
|
|
|
followSystemTheme = true;
|
|
|
|
notificationMethod = "electron";
|
|
|
|
optInTeamsV2 = true;
|
|
|
|
spellCheckerLanguages = ["en_GB"];
|
|
|
|
};
|
|
|
|
};
|
2024-07-03 07:15:39 +01:00
|
|
|
}
|