mirror of
https://github.com/traxys/Nixfiles.git
synced 2026-02-14 11:20:19 +01:00
46 lines
604 B
Nix
46 lines
604 B
Nix
{
|
|
pkgs,
|
|
config,
|
|
...
|
|
}: {
|
|
home.packages = with pkgs; [
|
|
# Browser
|
|
firefox-wayland
|
|
(tor-browser-bundle-bin.override {
|
|
useHardenedMalloc = false;
|
|
})
|
|
|
|
# IM
|
|
element-desktop
|
|
(discord.override {nss = pkgs.nss;})
|
|
signal-desktop
|
|
|
|
# Mail
|
|
thunderbird-wayland
|
|
|
|
# Media
|
|
pavucontrol
|
|
vlc
|
|
spotify
|
|
|
|
# Misc progs
|
|
bitwarden
|
|
libreoffice-fresh
|
|
kdeconnect
|
|
|
|
# Misc utils
|
|
wl-clipboard
|
|
xdg_utils
|
|
feh
|
|
];
|
|
|
|
home.sessionVariables = {
|
|
BROWSER = "firefox";
|
|
};
|
|
|
|
programs = {
|
|
zathura = {
|
|
enable = true;
|
|
};
|
|
};
|
|
}
|