36 lines
587 B
Nix
36 lines
587 B
Nix
|
{ pkgs, ... }: {
|
||
|
hm.home.packages = with pkgs; [
|
||
|
# qtox
|
||
|
# jami
|
||
|
# session-desktop
|
||
|
# briar-desktop
|
||
|
dino
|
||
|
# retroshare
|
||
|
# mumble
|
||
|
telegram-desktop
|
||
|
thunderbird
|
||
|
# fractal
|
||
|
|
||
|
keepassxc
|
||
|
monero-gui
|
||
|
libreoffice-fresh
|
||
|
anki
|
||
|
|
||
|
playerctl
|
||
|
android-tools
|
||
|
libqalculate
|
||
|
deploy-rs
|
||
|
|
||
|
mpv
|
||
|
];
|
||
|
|
||
|
imp.home.dirs = [
|
||
|
".local/share/TelegramDesktop"
|
||
|
".local/share/fractal" ".cache/fractal"
|
||
|
".cache/keepassxc" ".config/keepassxc"
|
||
|
".config/qalculate"
|
||
|
".local/share/Anki2" ".local/share/Anki"
|
||
|
".local/share/dino"
|
||
|
];
|
||
|
}
|