sisyphus/nixos/modules/apps/default.nix

29 lines
510 B
Nix
Raw Normal View History

2023-04-04 12:08:13 +02:00
{
imports = [
./alacritty
./firefox
./kitty
2023-04-27 09:16:19 +02:00
./steam
2023-04-04 12:08:13 +02:00
./thunderbird
# ./virtualbox
];
2023-05-24 21:34:44 +02:00
home-manager.users.tdpeuter = { pkgs, ... }: {
home.packages = with pkgs; [
brave
caprine-bin
discord
jellyfin-media-player
2023-06-17 10:01:00 +02:00
libreoffice-fresh
2023-05-24 21:34:44 +02:00
mattermost-desktop
nextcloud-client
obsidian
pinentry_qt
qalculate-gtk
spotify
zathura
zoom-us
];
};
2023-04-04 12:08:13 +02:00
}