mirror of
https://github.com/traxys/Nixfiles.git
synced 2026-02-14 03:10:19 +01:00
43 lines
568 B
Nix
43 lines
568 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
|
|
|
|
# Misc utils
|
|
wl-clipboard
|
|
xdg_utils
|
|
feh
|
|
];
|
|
|
|
home.sessionVariables = {
|
|
BROWSER = "firefox";
|
|
};
|
|
|
|
programs = {
|
|
zathura = {
|
|
enable = true;
|
|
};
|
|
};
|
|
}
|