37 lines
1 KiB
Nix
37 lines
1 KiB
Nix
{ pkgs, ... }:
|
|
{
|
|
imports = [
|
|
# Programs
|
|
./desktop/default.nix
|
|
./shell/default.nix
|
|
./emacs/default.nix
|
|
./browser/default.nix
|
|
# Services
|
|
./services/email/default.nix
|
|
./services/password-store/default.nix
|
|
# Additional Scripts
|
|
./scripts/default.nix
|
|
];
|
|
home.packages = with pkgs; [
|
|
libreoffice-fresh
|
|
krita
|
|
inkscape
|
|
webcord
|
|
signal-desktop
|
|
whatsapp-for-linux
|
|
teams-for-linux
|
|
];
|
|
xdg.configFile = {
|
|
"autostart/signal-desktop.desktop".source = "${pkgs.signal-desktop}/share/applications/signal-desktop.desktop";
|
|
"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" ];
|
|
};
|
|
};
|
|
}
|