panacea/modules/software.nix

137 lines
2.2 KiB
Nix
Raw Normal View History

2024-09-03 11:38:50 +02:00
{
config,
lib,
pkgs,
inputs,
...
}:
2020-04-24 04:08:44 +02:00
2021-06-24 12:22:58 +02:00
with pkgs;
let
2024-09-03 11:38:50 +02:00
custom-mpv = (
mpv-unwrapped.wrapper {
mpv = mpv-unwrapped;
scripts = with mpvScripts; [
sponsorblock-minimal
mpv-cheatsheet
];
}
);
2021-06-24 12:22:58 +02:00
2023-03-29 13:46:58 +02:00
patched-bitwig = bitwig-studio.overrideAttrs (old: rec {
src = "${inputs.local-bitwig}/bitwig-studio.deb";
postInstall = ''
cp -r ${inputs.local-bitwig}/bitwig.jar $out/libexec/bin/bitwig.jar
'';
});
2024-09-03 11:38:50 +02:00
in
{
2021-06-24 12:22:58 +02:00
environment.systemPackages = [
2020-04-24 04:08:44 +02:00
# Monitoring
htop
2020-07-18 22:50:40 +02:00
acpi
2020-04-24 04:08:44 +02:00
# Password management
2020-05-10 03:13:30 +02:00
gnupg
2020-05-08 21:53:52 +02:00
pass-wayland
passff-host
gitAndTools.pass-git-helper
inputs.agenix.packages.${config.nixpkgs.localSystem.system}.default
2021-08-10 00:15:57 +02:00
git-crypt
2022-11-14 19:58:44 +01:00
git-lfs
2020-04-24 04:08:44 +02:00
# Browsers
ungoogled-chromium
2020-04-24 04:08:44 +02:00
# LaTeX
texlive.combined.scheme-full
2020-05-08 21:53:52 +02:00
pandoc
2021-07-21 13:44:54 +02:00
texlab
# Text editors
neovim
2022-05-08 21:02:06 +02:00
neovim-remote
2021-06-24 12:22:58 +02:00
emacs-vterm
2022-09-09 17:47:25 +02:00
# Emacs dependencies
2021-11-24 23:52:34 +01:00
(ripgrep.override { withPCRE2 = true; })
2020-05-09 18:45:10 +02:00
fd
clang
2020-05-09 18:53:22 +02:00
coreutils
# Terminals
tmux
tmuxp
fish
# Development
git
direnv
2021-09-29 12:09:36 +02:00
nix-direnv
gnumake
gitAndTools.pre-commit
2020-05-10 03:13:30 +02:00
# Rice
adapta-gtk-theme
paper-icon-theme
# Audio
mopidy
ncmpcpp
2020-05-14 03:04:30 +02:00
mpc_cli
2021-02-20 12:04:23 +01:00
pulsemixer
2022-06-21 22:13:56 +02:00
easyeffects
2023-03-29 13:46:58 +02:00
patched-bitwig
# Productivity
zathura
2020-08-29 12:32:09 +02:00
libreoffice-fresh
simple-scan
2020-08-29 12:32:09 +02:00
bc
2023-04-03 10:57:03 +02:00
pdfgrep
2020-05-11 19:08:09 +02:00
# Mail stack
2022-09-18 18:49:01 +02:00
mu
(isync.override { withCyrusSaslXoauth2 = true; })
2020-05-11 19:08:09 +02:00
msmtp
# Media
gimp
2024-02-05 21:54:39 +01:00
custom-mpv
2022-06-09 00:41:16 +02:00
nodePackages.webtorrent-cli
2021-08-09 02:12:57 +02:00
deluge
yt-dlp-light
2020-08-29 12:36:47 +02:00
calibre
2022-01-09 19:18:09 +01:00
beets
# File management
zip
unzip
unar
2022-02-24 12:20:14 +01:00
cifs-utils
keyutils
2020-10-28 16:52:29 +01:00
# Overlays
cachix
2024-01-05 20:11:00 +01:00
# Budgeting
beancount
beancount-language-server
fava
# Programming tools
2020-09-24 00:08:29 +02:00
## Shell
shellcheck
shfmt
2021-02-22 00:58:21 +01:00
## Nix
2024-09-03 11:38:50 +02:00
nixfmt-rfc-style
## Python
pyright
black
2021-02-22 00:58:21 +01:00
## C/C++
2020-11-14 16:12:46 +01:00
clang-tools
2021-02-22 00:58:21 +01:00
## Go
2021-02-06 00:31:14 +01:00
gopls
gotests
gore
golangci-lint
2020-04-24 04:08:44 +02:00
];
# Fonts declaration
fonts.packages = with pkgs; [
google-fonts
inconsolata-nerdfont
terminus_font_ttf
iosevka-bin
2021-05-25 20:21:32 +02:00
libertine
2023-10-17 17:49:40 +02:00
(nerdfonts.override { fonts = [ "NerdFontsSymbolsOnly" ]; })
];
2020-04-24 04:08:44 +02:00
}