nixos/home/default.nix

35 lines
753 B
Nix
Raw Normal View History

2024-07-30 15:06:34 +01:00
{ pkgs, ... }:
{
imports = [
# Programs
./desktop/default.nix
./shell/default.nix
./alacritty/default.nix
./emacs/default.nix
./browser/default.nix
# Services
./services/email/default.nix
./services/password-store/default.nix
# Additional Scripts
./scripts/default.nix
];
2024-07-25 07:46:49 +01:00
home.packages = with pkgs; [
libreoffice-fresh
2024-08-01 16:41:34 +01:00
krdc
krita
inkscape
webcord
2024-07-28 09:09:07 +01:00
signal-desktop
whatsapp-for-linux
teams-for-linux
];
xdg.configFile."teams-for-linux/config.json".text = builtins.toJSON {
awayOnSystemIdle = true;
closeAppOnCross = true;
followSystemTheme = true;
notificationMethod = "electron";
optInTeamsV2 = true;
spellCheckerLanguages = [ "en_GB" ];
};
}