panacea/modules/software.nix

125 lines
2.0 KiB
Nix
Raw Normal View History

2021-08-08 20:56:16 +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
2022-09-30 21:56:18 +02:00
mpv-sponsorblock = (pkgs.wrapMpv pkgs.mpv-unwrapped {
scripts = [ mpvScripts.sponsorblock ];
});
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
'';
});
2021-09-29 12:09:36 +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.x86_64-linux.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
2022-10-18 00:23:09 +02:00
firefox-wayland
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
2022-09-30 21:58:19 +02:00
gnome.simple-scan
2020-08-29 12:32:09 +02:00
bc
2021-11-14 18:59:48 +01:00
citrix_workspace
2023-03-22 23:15:26 +01:00
teams
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
2022-04-29 12:36:11 +02:00
mpv-sponsorblock
2022-06-09 00:41:16 +02:00
nodePackages.webtorrent-cli
2021-08-09 02:12:57 +02:00
deluge
2022-04-25 04:02:37 +02:00
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
2021-10-28 14:39:12 +02:00
# Networking
2022-01-21 00:31:34 +01:00
openconnect-sso
# Programming tools
2020-09-24 00:08:29 +02:00
## Shell
shellcheck
shfmt
2021-02-22 00:58:21 +01:00
## Nix
2020-09-24 00:08:29 +02:00
nixfmt
## Python
nodePackages.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
2021-08-15 23:37:06 +02:00
emacs-all-the-icons-fonts
];
2020-04-24 04:08:44 +02:00
}