Nixfiles/graphical.nix

44 lines
589 B
Nix
Raw Normal View History

2021-06-20 22:04:52 +02:00
{ pkgs, config, ... }:
{
home.packages = with pkgs; [
2022-02-06 21:38:03 +01:00
# Browser
2021-11-25 18:11:12 +01:00
firefox-wayland
2022-01-18 21:46:27 +01:00
(tor-browser-bundle-bin.override {
useHardenedMalloc = false;
})
2022-02-06 21:10:48 +01:00
2022-02-06 21:38:03 +01:00
# IM
2022-02-06 21:10:48 +01:00
element-desktop
(discord.override { nss = pkgs.nss; })
signal-desktop
2022-02-06 21:38:03 +01:00
# Mail
2022-02-06 21:10:48 +01:00
thunderbird-wayland
2022-02-06 21:38:03 +01:00
# Media
2022-02-02 22:53:40 +01:00
pavucontrol
vlc
2022-02-06 21:10:48 +01:00
spotify
2021-06-20 22:04:52 +02:00
2022-02-06 21:38:03 +01:00
# Misc progs
2022-02-06 21:10:48 +01:00
bitwarden
libreoffice-fresh
2022-02-06 21:38:03 +01:00
# Misc utils
wl-clipboard
2021-07-14 12:20:13 +02:00
xdg_utils
2022-02-06 21:10:48 +01:00
feh
2021-06-20 22:04:52 +02:00
];
2021-06-21 13:31:00 +02:00
home.sessionVariables = {
2021-07-14 12:20:13 +02:00
BROWSER = "firefox";
2021-06-21 13:31:00 +02:00
};
2021-06-20 22:04:52 +02:00
programs = {
zathura = {
enable = true;
};
};
}