nixos-config/users/rouven/modules/packages.nix

115 lines
2.4 KiB
Nix
Raw Normal View History

2023-06-27 16:01:12 +02:00
{ pkgs, ... }:
2022-12-19 19:30:32 +01:00
{
home.packages = with pkgs; [
2023-02-17 21:35:12 +01:00
2022-12-19 19:30:32 +01:00
# essentials
2023-11-24 09:57:15 +01:00
htop-vim
lsof
2023-11-24 09:57:15 +01:00
zip
unzip
2024-03-09 12:40:33 +01:00
pcmanfm
2023-02-25 22:28:04 +01:00
xdg-utils # used for xdg-open
2023-10-15 16:30:40 +02:00
appimage-run
seafile-client
2022-12-19 19:30:32 +01:00
# graphics
(zathura.override { plugins = [ zathuraPkgs.zathura_pdf_mupdf ]; })
2022-12-19 19:30:32 +01:00
gimp
2023-02-12 11:20:34 +01:00
ffmpeg
2022-12-19 19:30:32 +01:00
# bluetooth
blueman
# internet
google-chrome
# messaging
tdesktop
# games
2023-12-12 17:43:53 +01:00
prismlauncher
2022-12-19 19:30:32 +01:00
superTuxKart
2024-04-03 00:02:10 +02:00
space-cadet-pinball
2022-12-19 19:30:32 +01:00
2023-12-29 19:47:57 +01:00
# cryptography
2023-09-19 13:47:08 +02:00
yubikey-manager
2024-01-14 13:17:29 +01:00
# python311Packages.pyhanko # broken, TODO fix
2023-12-29 23:33:09 +01:00
bitwarden-cli
2022-12-19 19:30:32 +01:00
# misc
xournalpp
2023-10-08 14:22:52 +02:00
libreoffice
2023-11-24 09:57:15 +01:00
mosh
2024-01-25 18:21:20 +01:00
typst
2024-04-10 00:34:03 +02:00
hut
2024-04-27 21:00:45 +02:00
wine
2023-02-25 16:30:02 +01:00
2023-05-21 13:50:49 +02:00
# programming languages
cargo
rustc
rustfmt
2023-06-09 11:18:29 +02:00
clippy
2023-05-22 16:14:03 +02:00
gcc
2023-09-06 13:35:16 +02:00
nodejs_20
2023-10-26 12:12:45 +02:00
gnumake
2023-12-19 22:42:38 +01:00
go
2024-04-10 00:34:03 +02:00
pre-commit
# fancy tools
2024-01-25 18:21:20 +01:00
just
2024-02-29 15:37:22 +01:00
himalaya
# strace but with colors
(strace.overrideAttrs (_: {
patches = [
(fetchpatch {
url = "https://raw.githubusercontent.com/xfgusta/strace-with-colors/main/strace-with-colors.patch";
hash = "sha256-gcQldGsRgvGnrDX0zqcLTpEpchNEbCUFdKyii0wetEI=";
})
];
}))
2023-02-25 16:30:02 +01:00
2022-12-19 19:30:32 +01:00
];
2023-02-28 15:05:07 +01:00
2024-01-04 17:38:58 +01:00
programs.firefox.enable = true;
programs = {
thunderbird = {
enable = true;
profiles = {
default = {
withExternalGnupg = true;
isDefault = true;
settings = {
"intl.date_time.pattern_override.connector_short" = "{1} {0}";
"intl.date_time.pattern_override.date_short" = "yyyy-MM-dd";
"intl.date_time.pattern_override.time_short" = "HH:mm";
};
};
};
};
};
2023-11-20 22:47:07 +01:00
services.gnome-keyring.enable = true;
2023-06-19 13:22:15 +02:00
2023-02-04 22:46:46 +01:00
xdg.mimeApps = {
enable = true;
defaultApplications =
let
2024-04-17 16:12:09 +02:00
image-viewers = [ "google-chrome.desktop" "gimp.desktop" "swappy.desktop" "org.qutebrowser.qutebrowser.desktop" ];
2023-09-19 13:47:08 +02:00
browsers = [ "google-chrome.desktop" "firefox.desktop" "org.qutebrowser.qutebrowser.desktop" ];
2023-02-04 22:46:46 +01:00
in
{
2023-11-25 23:20:52 +01:00
"application/pdf" = [ "org.pwmt.zathura.desktop" ];
2023-02-04 22:46:46 +01:00
"image/png" = image-viewers;
"image/jpg" = image-viewers;
"image/jpeg" = image-viewers;
"image/tiff" = image-viewers;
"image/gif" = image-viewers;
"image/webp" = image-viewers;
"image/ico" = image-viewers;
"x-scheme-handler/http" = browsers;
"x-scheme-handler/https" = browsers;
2024-04-22 15:24:37 +02:00
"x-scheme-handler/tg" = [ "org.telegram.desktop.desktop" ];
2023-02-04 22:46:46 +01:00
};
};
2022-12-19 19:30:32 +01:00
}