mirror of
https://github.com/traxys/Nixfiles.git
synced 2026-02-13 19:00:19 +01:00
61 lines
978 B
Nix
61 lines
978 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
|
|
krita
|
|
gromit-mpx
|
|
|
|
# Libreoffice
|
|
libreoffice
|
|
hunspell
|
|
hunspellDicts.fr-any
|
|
hyphen
|
|
|
|
# Misc progs
|
|
bitwarden
|
|
libreoffice-fresh
|
|
plasma5Packages.kdeconnect-kde
|
|
|
|
# Misc utils
|
|
wl-clipboard
|
|
xdg-utils
|
|
feh
|
|
wdisplays
|
|
];
|
|
|
|
/*
|
|
environment.pathsToLink = [ "/share/hunspell" "/share/myspell" "/share/hyphen" ];
|
|
environment.variables.DICPATH = "/run/current-system/sw/share/hunspell:/run/current-system/sw/share/hyphen";
|
|
*/
|
|
|
|
home.sessionVariables = {
|
|
BROWSER = "firefox";
|
|
GTK_USE_PORTAL = 1;
|
|
};
|
|
|
|
programs = {
|
|
zathura = {
|
|
enable = true;
|
|
};
|
|
};
|
|
}
|