37 lines
793 B
Nix

{
config,
lib,
pkgs,
...
}:
{
environment.systemPackages = with pkgs; [
discord
];
home-manager.users.mysaa.home.packages = with pkgs; [
firefox
vlc
(vscode-with-extensions.override {
vscode = vscodium;
vscodeExtensions = with vscode-marketplace; [
maximedenes.vscoq
myriad-dreamin.tinymist
vmware.vscode-boot-dev-pack
ms-python.python
edwinkofler.vscode-hyperupcall-pack-java
];
})
];
home-manager.users.mysaa.accounts.email.accounts."hadoly".thunderbird.enable = true;
home-manager.users.mysaa.accounts.email.accounts."personal".thunderbird.enable = true;
home-manager.users.mysaa.programs.thunderbird = {
enable = true;
profiles.default = {
isDefault = true;
};
};
}