Nix-Hyprland/nixos/packages.nix

121 lines
1.7 KiB
Nix
Raw Permalink Normal View History

2024-04-16 20:52:14 -04:00
{ pkgs, ... }: {
nixpkgs.config = {
allowUnfree = true;
permittedInsecurePackages = ["python-2.7.18.8" "electron-25.9.0"];
2024-05-24 03:29:17 -04:00
chromium.commandLineArgs = "--ozone-platform=wayland";
2024-04-16 20:52:14 -04:00
};
environment.systemPackages = with pkgs; [
# Desktop apps
chromium
telegram-desktop
alacritty
obs-studio
rofi
wofi
mpv
kdenlive
discord
gparted
obsidian
zoom-us
pcmanfm-qt
# 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
ranger
zram-generator
cava
zip
ntfs3g
yt-dlp
brightnessctl
swww
openssl
2024-04-16 23:15:16 -04:00
lazygit
2024-04-16 23:51:23 -04:00
bluez
2024-04-17 00:08:32 -04:00
bluez-tools
2024-04-16 20:52:14 -04:00
# GUI utils
feh
imv
dmenu
screenkey
mako
gromit-mpx
# Xorg stuff
#xterm
#xclip
#xorg.xbacklight
# Wayland stuff
xwayland
wl-clipboard
cliphist
# WMs and stuff
herbstluftwm
hyprland
seatd
xdg-desktop-portal-hyprland
polybar
waybar
# Sound
pipewire
pulseaudio
pamixer
# GPU stuff
amdvlk
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" ]; })
];
}