mirror of
https://git.sr.ht/~roxwize/.dotfiles
synced 2025-02-07 09:52:50 +00:00
31 lines
487 B
Nix
31 lines
487 B
Nix
|
{ pkgs, ... }:
|
||
|
{
|
||
|
environment.systemPackages = with pkgs; [
|
||
|
# system tools
|
||
|
bat
|
||
|
btop
|
||
|
ffmpeg
|
||
|
git
|
||
|
gparted
|
||
|
hyfetch
|
||
|
imagemagick
|
||
|
kitty
|
||
|
xclip
|
||
|
yt-dlp
|
||
|
zellij
|
||
|
# text editors
|
||
|
neovim
|
||
|
vscodium
|
||
|
# X11
|
||
|
hsetroot
|
||
|
nitrogen
|
||
|
polybar
|
||
|
rofi
|
||
|
xcompmgr
|
||
|
xdotool
|
||
|
xorg.xev
|
||
|
xorg.xwininfo
|
||
|
# misc
|
||
|
uxn
|
||
|
];
|
||
|
}
|