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

57 lines
1.2 KiB
Nix

{ pkgs, lib, ... }:
{
imports = [
./lxterminal
./pulsar
];
nixpkgs.config.allowUnfreePredicate = pkg: builtins.elem (lib.getName pkg) [
"discord"
"telegra-desktop"
"spotify"
];
home.packages = with pkgs; [
wl-clipboard
discord
element-desktop
#element-desktop-wayland
nheko
slack
telegram-desktop
f3d
firefox
zotero
gnome.eog # TODO: try loupe
gnome-connections
scrcpy
#spotify # use flathub version instead
transgui #transmission-remote-gtk
]
++ builtins.filter (drv: (builtins.tryEval drv.outPath).success) [
teams
zoom-us
];
# flatpak
# TODO: this requires a logout+login to take effect
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;
#};
}