panacea/modules/software.nix

127 lines
2.2 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-04-25 06:35:04 +02:00
emacs-vterm = ((emacsPackagesFor emacs28NativeComp).emacsWithPackages
(epkgs: [ epkgs.vterm ]));
2022-01-03 00:42:26 +01:00
patched-webtorrent-cli = nodePackages.webtorrent-cli.override {
preRebuild = ''
sed -i -e "s|#!/usr/bin/env node|#! ${pkgs.nodejs}/bin/node|" node_modules/node-gyp-build/bin.js
'';
};
2022-01-29 13:28:28 +01:00
isync-oauth2 = isync.overrideAttrs
(div: rec { buildInputs = [ openssl patched-cyrus-sasl-oauth2 zlib ]; });
2022-04-29 12:36:11 +02:00
mpv-sponsorblock =
(mpv-with-scripts.override { scripts = [ mpvScripts.sponsorblock ]; });
2021-06-24 12:22:58 +02:00
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
2021-08-08 20:56:16 +02:00
inputs.agenix.defaultPackage.x86_64-linux
2021-08-10 00:15:57 +02:00
git-crypt
2020-04-24 04:08:44 +02:00
# Browsers
firefox
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
2021-06-24 12:22:58 +02:00
emacs-vterm
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
2022-04-25 13:50:29 +02:00
smug
fish
# Development
git
direnv
2021-09-29 12:09:36 +02:00
nix-direnv
2020-05-11 19:08:09 +02:00
podman-compose
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
# Productivity
fff
zathura
2020-08-29 12:32:09 +02:00
libreoffice-fresh
2020-05-14 03:04:30 +02:00
gnome3.simple-scan
2020-08-29 12:32:09 +02:00
bc
2021-11-14 18:59:48 +01:00
citrix_workspace
2020-05-11 19:08:09 +02:00
# Mail stack
neomutt
2022-01-29 13:28:28 +01:00
isync-oauth2
2020-05-11 19:08:09 +02:00
notmuch
msmtp
w3m
urlscan
# Media
gimp
2022-04-29 12:36:11 +02:00
mpv-sponsorblock
2022-01-03 00:42:26 +01:00
patched-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-20 12:17:36 +02:00
# Videoconference
teams
2021-10-28 14:39:12 +02:00
# Networking
openvpn
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.fonts = 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
}