2023-03-11 03:39:06 +01:00
|
|
|
{ pkgs, lib, ... }:
|
2023-06-28 22:22:48 +02:00
|
|
|
|
2023-03-11 03:39:06 +01:00
|
|
|
{
|
2023-06-28 22:22:48 +02:00
|
|
|
|
2023-10-14 18:32:30 +02:00
|
|
|
imports = [
|
|
|
|
./lxterminal
|
2023-10-14 18:33:25 +02:00
|
|
|
./pulsar
|
2023-10-14 18:32:30 +02:00
|
|
|
];
|
|
|
|
|
2023-11-10 22:55:32 +01:00
|
|
|
# TODO: doesn't work?
|
2023-06-26 23:11:42 +02:00
|
|
|
nixpkgs.config.allowUnfreePredicate = pkg: builtins.elem (lib.getName pkg) [
|
|
|
|
"discord"
|
|
|
|
"telegra-desktop"
|
|
|
|
"spotify"
|
|
|
|
];
|
|
|
|
|
2023-11-10 22:55:32 +01:00
|
|
|
# TODO: doesn't work?
|
|
|
|
nixpkgs.config.permittedInsecurePackages = [
|
|
|
|
"pulsar-1.106.0"
|
|
|
|
"zotero-6.0.26"
|
|
|
|
];
|
|
|
|
|
2023-03-11 03:39:06 +01:00
|
|
|
home.packages = with pkgs; [
|
2024-01-26 01:46:33 +01:00
|
|
|
#wl-clipboard # https://github.com/bugaevc/wl-clipboard/issues/185
|
|
|
|
(symlinkJoin {
|
|
|
|
inherit (wl-clipboard) name;
|
|
|
|
paths = [
|
|
|
|
(writeShellScriptBin "wl-copy" ''
|
|
|
|
timeout 0.25s ${lib.getExe' wl-clipboard "wl-copy"} "$@"
|
|
|
|
'')
|
|
|
|
(writeShellScriptBin "wl-paste" ''
|
|
|
|
timeout 0.25s ${lib.getExe' wl-clipboard "wl-paste"} "$@"
|
|
|
|
'')
|
|
|
|
wl-clipboard
|
|
|
|
];
|
|
|
|
})
|
2023-07-04 16:32:09 +02:00
|
|
|
|
2023-03-11 03:39:06 +01:00
|
|
|
discord
|
2023-10-14 18:40:32 +02:00
|
|
|
element-desktop
|
|
|
|
#element-desktop-wayland
|
|
|
|
nheko
|
2023-06-23 21:45:16 +02:00
|
|
|
slack
|
2023-06-29 02:43:56 +02:00
|
|
|
telegram-desktop
|
2023-07-09 00:10:03 +02:00
|
|
|
|
2024-01-26 01:46:33 +01:00
|
|
|
(pkgs.zxtune or null)
|
|
|
|
|
2023-03-11 03:39:06 +01:00
|
|
|
f3d
|
|
|
|
firefox
|
2023-06-23 21:45:16 +02:00
|
|
|
zotero
|
2023-10-14 18:40:32 +02:00
|
|
|
gnome.eog # TODO: try loupe
|
2023-03-11 03:39:06 +01:00
|
|
|
gnome-connections
|
|
|
|
scrcpy
|
2023-06-29 02:43:56 +02:00
|
|
|
#spotify # use flathub version instead
|
2023-03-11 15:59:56 +01:00
|
|
|
transgui #transmission-remote-gtk
|
2023-10-14 18:40:32 +02:00
|
|
|
]
|
|
|
|
++ builtins.filter (drv: (builtins.tryEval drv.outPath).success) [
|
|
|
|
teams
|
|
|
|
zoom-us
|
2023-03-11 03:39:06 +01:00
|
|
|
];
|
|
|
|
|
|
|
|
# flatpak
|
2023-06-26 23:11:42 +02:00
|
|
|
# TODO: this requires a logout+login to take effect
|
2023-03-11 03:39:06 +01:00
|
|
|
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
|
|
|
|
|
2023-06-29 02:43:56 +02:00
|
|
|
# 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;
|
|
|
|
#};
|
2023-06-28 22:22:48 +02:00
|
|
|
|
2023-03-11 03:39:06 +01:00
|
|
|
}
|