nixos-config/nixos/packages.nix

135 lines
1.8 KiB
Nix
Raw Normal View History

2024-04-17 05:52:14 +05:00
{ pkgs, ... }: {
nixpkgs.config = {
allowUnfree = true;
permittedInsecurePackages = ["python-2.7.18.8" "electron-25.9.0"];
};
environment.systemPackages = with pkgs; [
# Desktop apps
2024-04-22 10:31:57 +03:00
firefox
2024-04-17 05:52:14 +05:00
telegram-desktop
alacritty
obs-studio
rofi
wofi
mpv
kdenlive
gparted
obsidian
zoom-us
pcmanfm-qt
2024-04-23 00:01:25 +03:00
vscode
jetbrains.pycharm-community
jetbrains.idea-community
android-studio
2024-04-23 16:26:19 +03:00
swayimg
2024-04-17 05:52:14 +05:00
# Coding stuff
gnumake
gcc
nodejs
python
(python3.withPackages (ps: with ps; [ requests ]))
# CLI utils
neofetch
file
tree
wget
git
fastfetch
htop
nix-index
unzip
scrot
ffmpeg
light
lux
mediainfo
2024-04-23 00:01:25 +03:00
yazi
2024-04-17 05:52:14 +05:00
zram-generator
cava
zip
ntfs3g
yt-dlp
brightnessctl
swww
openssl
2024-04-17 08:15:16 +05:00
lazygit
2024-04-17 08:51:23 +05:00
bluez
2024-04-17 09:08:32 +05:00
bluez-tools
2024-04-22 10:31:57 +03:00
httpie
ncdu
hexyl
jq
tldr
2024-04-23 16:25:49 +03:00
bat
2024-04-23 16:26:19 +03:00
xdg-utils
2024-04-24 12:15:45 +03:00
neovim
2024-04-17 05:52:14 +05:00
# GUI utils
feh
imv
dmenu
screenkey
mako
gromit-mpx
# Xorg stuff
#xterm
#xclip
#xorg.xbacklight
# Wayland stuff
xwayland
wl-clipboard
cliphist
2024-04-23 16:26:19 +03:00
ueberzugpp
2024-04-17 05:52:14 +05:00
# WMs and stuff
herbstluftwm
hyprland
seatd
xdg-desktop-portal-hyprland
polybar
waybar
2024-04-23 00:01:25 +03:00
waypaper
vesktop
2024-04-17 05:52:14 +05:00
# Sound
pipewire
pulseaudio
pamixer
# GPU stuff
2024-04-22 10:19:52 +03:00
#amdvlk
2024-04-17 05:52:14 +05:00
rocm-opencl-icd
glaxnimate
# Screenshotting
grim
grimblast
slurp
flameshot
swappy
# Other
home-manager
spice-vdagent
libsForQt5.qtstyleplugin-kvantum
libsForQt5.qt5ct
papirus-nord
];
fonts.packages = with pkgs; [
jetbrains-mono
noto-fonts
noto-fonts-emoji
twemoji-color-font
font-awesome
powerline-fonts
powerline-symbols
(nerdfonts.override { fonts = [ "NerdFontsSymbolsOnly" ]; })
];
}