27 lines
504 B
Nix
27 lines
504 B
Nix
{
|
|
imports = [
|
|
./alacritty
|
|
./firefox
|
|
./steam
|
|
./thunderbird
|
|
# ./virtualbox
|
|
];
|
|
|
|
home-manager.users.tdpeuter = { pkgs, ... }: {
|
|
home.packages = with pkgs; [
|
|
brave
|
|
caprine-bin
|
|
discord
|
|
jellyfin-media-player
|
|
libreoffice-fresh-unwrapped
|
|
mattermost-desktop
|
|
nextcloud-client
|
|
obsidian
|
|
pinentry_qt
|
|
qalculate-gtk
|
|
spotify
|
|
zathura
|
|
zoom-us
|
|
];
|
|
};
|
|
}
|