config/users/pbsds/home/profiles/desktop.nix

39 lines
870 B
Nix

{ pkgs, lib, ... }:
{
home.packages = with pkgs; [
atom # TODO: config
pulsar # TODO: config, transition into this
discord
element-desktop#-wayland
slack
telegram-desktop
f3d
firefox
zotero
gnome.eog
gnome-connections
scrcpy
#spotify # use flathub version instead
transgui #transmission-remote-gtk
];
# flatpak
home.activation.addFlathubRemote = lib.hm.dag.entryAfter ["writeBoundary"] ''
if command -v flatpak >/dev/null; then
$DRY_RUN_CMD \
flatpak remote-add --if-not-exists --user flathub https://dl.flathub.org/repo/flathub.flatpakrepo
fi
'';
# TODO: automatic flatpak updates
# TODO: fix collision
## Do not keep me from using the app just to force an update
#xdg.configFile."discord/settings.json".text = builtins.toJSON {
# SKIP_HOST_UPDATE = true;
#};
}