nix/home/packages.nix

124 lines
1.9 KiB
Nix
Raw Normal View History

2022-04-06 15:20:16 +00:00
{pkgs, ...}: let
myPythonPackages = python-packages:
with python-packages; [
2022-05-14 02:01:25 +00:00
black
2022-04-06 15:20:16 +00:00
grip
2022-05-14 02:01:25 +00:00
isort
nose
nose2
poetry
pyflakes
2022-04-06 15:20:16 +00:00
pygobject3
2022-05-14 02:01:25 +00:00
pytest
2022-04-06 15:20:16 +00:00
pyxdg
tkinter
];
2022-03-16 10:39:57 +00:00
python-custom = pkgs.python3.withPackages myPythonPackages;
2022-04-06 15:20:16 +00:00
in {
2022-02-27 20:57:58 +00:00
home.packages = with pkgs; [
age-plugin-yubikey
alejandra
2022-04-24 02:54:39 +00:00
any-nix-shell
2022-02-27 20:57:58 +00:00
atomicparsley
bitwarden-cli
2022-04-06 15:20:16 +00:00
blueman
bluezFull
2022-04-24 02:54:39 +00:00
btrfs-progs
2022-02-27 20:57:58 +00:00
buku
bukubrow
2022-05-14 02:01:25 +00:00
cargo
2022-04-01 17:17:22 +00:00
ccid
2022-03-03 23:29:07 +00:00
clipman
2022-05-14 02:01:25 +00:00
cmake
2022-04-24 02:54:39 +00:00
cmus
2022-02-27 20:57:58 +00:00
dex
2022-04-24 02:54:39 +00:00
discord
2022-04-06 15:20:16 +00:00
dxvk
2022-05-14 02:01:25 +00:00
editorconfig-core-c
2022-03-24 21:45:37 +00:00
element-desktop-wayland
2022-05-12 22:18:48 +00:00
emacs-all-the-icons-fonts
2022-03-16 10:41:13 +00:00
fd
2022-02-27 20:57:58 +00:00
ffmpeg
2022-04-30 15:03:03 +00:00
# freetube
2022-03-16 10:41:13 +00:00
fzf
2022-04-06 15:20:16 +00:00
gnupg
2022-05-14 02:01:25 +00:00
graphviz
greetd.greetd
greetd.tuigreet
2022-05-14 02:01:25 +00:00
gnuplot
html-tidy
2022-03-16 10:42:30 +00:00
input-fonts
2022-02-27 20:57:58 +00:00
josm
kde-gtk-config
2022-04-24 02:54:39 +00:00
kdeconnect
2022-04-06 15:20:16 +00:00
libappindicator
libappindicator-gtk3
2022-03-24 21:45:37 +00:00
libqalculate
2022-04-26 10:45:20 +00:00
libsForQt5.kguiaddons
libsForQt5.polkit-kde-agent
2022-04-24 02:54:39 +00:00
my-pkgs.nerdfont-symbols
2022-02-27 20:57:58 +00:00
my-pkgs.taskwarrior-tui
2022-04-24 02:54:39 +00:00
my-pkgs.tokyo-night-gtk
2022-03-16 10:41:13 +00:00
networkmanager_dmenu
2022-02-27 20:57:58 +00:00
nixgl.nixGLIntel
2022-05-14 02:01:25 +00:00
nixfmt
nodePackages.stylelint
nodePackages.js-beautify
2022-03-16 10:41:13 +00:00
nyxt
2022-04-06 15:20:16 +00:00
obsidian
2022-04-01 13:27:57 +00:00
pcmanfm
2022-04-01 17:17:22 +00:00
pcsclite
pcsclite.bin
2022-05-14 02:01:25 +00:00
pipenv
2022-04-06 15:20:16 +00:00
playerctl
2022-03-03 23:29:07 +00:00
proton-caller
protontricks
2022-03-16 10:41:13 +00:00
python-custom
2022-04-01 13:27:57 +00:00
qemu
2022-03-03 23:29:07 +00:00
quickemu
2022-02-27 20:57:58 +00:00
rbw
2022-04-24 02:54:39 +00:00
remind
2022-03-16 10:41:13 +00:00
ripgrep
ripgrep-all
rsync
2022-05-14 02:01:25 +00:00
rustc
rust-analyzer
shellcheck
2022-04-30 15:03:03 +00:00
sumneko-lua-language-server
2022-04-06 15:20:16 +00:00
steam
steam-run
steam-run-native
2022-04-30 15:03:03 +00:00
# sway-contrib.grimshot
2022-04-24 02:54:39 +00:00
sway-launcher-desktop
2022-04-01 13:27:57 +00:00
tailscale
ueberzug
2022-04-01 17:18:08 +00:00
unifont
unifont_upper
2022-04-01 13:27:57 +00:00
viewnior
2022-02-27 20:57:58 +00:00
wget
2022-04-01 13:27:57 +00:00
which
wireless-regdb
wirelesstools
2022-04-24 02:54:39 +00:00
wl-clipboard
wlogout
wyrd
2022-04-01 13:27:57 +00:00
xarchiver
xdg-desktop-portal-wlr
xdg-utils
2022-02-27 20:57:58 +00:00
yt-dlp
ytfzf
zulip
2022-04-24 02:54:39 +00:00
(nerdfonts.override {
fonts = [
"3270"
"FiraCode"
"FiraMono"
"Lekton"
"RobotoMono"
"SpaceMono"
"VictorMono"
];
})
2022-04-26 10:44:31 +00:00
];
2022-02-07 01:21:35 +00:00
}