2024-12-11 23:37:08 -05:00
|
|
|
{ pkgs, ... }:
|
|
|
|
{
|
2024-12-23 14:44:50 -05:00
|
|
|
# I'm not sure if you actually need stuff like GTK4 to be
|
|
|
|
# in here when it's really only used with nix-shell and the
|
|
|
|
# amount of time it saves during installation is probably
|
|
|
|
# only like a few seconds
|
2024-12-11 23:37:08 -05:00
|
|
|
environment.systemPackages = with pkgs; [
|
2024-12-18 21:00:26 -05:00
|
|
|
# development
|
2024-12-20 15:19:50 -05:00
|
|
|
(fenix.default.withComponents [ "cargo" "rustc" ])
|
2024-12-20 18:41:29 -05:00
|
|
|
gcc
|
2024-12-20 14:37:27 -05:00
|
|
|
gtk4
|
2024-12-18 21:00:26 -05:00
|
|
|
just
|
2024-12-20 18:14:38 -05:00
|
|
|
meson
|
2024-12-19 21:56:56 -05:00
|
|
|
nodejs_23
|
2024-12-20 18:44:59 -05:00
|
|
|
pkg-config
|
2024-12-20 14:37:27 -05:00
|
|
|
vala
|
2024-12-18 21:00:26 -05:00
|
|
|
## language servers
|
2024-12-20 18:21:33 -05:00
|
|
|
mesonlsp # Meson
|
2024-12-20 14:37:27 -05:00
|
|
|
nil # Nix
|
|
|
|
rust-analyzer # Rust
|
|
|
|
vala-language-server # Vala
|
2024-12-18 21:00:26 -05:00
|
|
|
# games
|
|
|
|
prismlauncher
|
|
|
|
# graphics
|
|
|
|
gimp
|
|
|
|
krita
|
|
|
|
# gtk
|
|
|
|
posy-cursors
|
|
|
|
pantheon.elementary-gtk-theme
|
|
|
|
# internet
|
|
|
|
nicotine-plus
|
|
|
|
vesktop
|
|
|
|
yt-dlp
|
2024-12-11 23:37:08 -05:00
|
|
|
# system tools
|
2024-12-29 22:03:33 -05:00
|
|
|
alsa-utils
|
2024-12-11 23:37:08 -05:00
|
|
|
bat
|
|
|
|
btop
|
2024-12-16 23:00:45 -05:00
|
|
|
dconf-editor
|
2024-12-11 23:37:08 -05:00
|
|
|
ffmpeg
|
|
|
|
git
|
|
|
|
gparted
|
2024-12-17 17:06:47 -05:00
|
|
|
home-manager
|
2024-12-11 23:37:08 -05:00
|
|
|
hyfetch
|
|
|
|
imagemagick
|
|
|
|
kitty
|
2024-12-16 00:19:22 -05:00
|
|
|
maim
|
2024-12-15 21:12:41 -05:00
|
|
|
monitor
|
2024-12-29 20:01:29 -05:00
|
|
|
pavucontrol
|
2024-12-11 23:37:08 -05:00
|
|
|
xclip
|
|
|
|
zellij
|
|
|
|
# text editors
|
|
|
|
neovim
|
|
|
|
vscodium
|
|
|
|
# X11
|
|
|
|
hsetroot
|
|
|
|
nitrogen
|
2024-12-15 16:35:05 -05:00
|
|
|
polybarFull
|
2024-12-11 23:37:08 -05:00
|
|
|
rofi
|
|
|
|
xcompmgr
|
|
|
|
xdotool
|
|
|
|
xorg.xev
|
|
|
|
xorg.xwininfo
|
2024-12-30 00:03:52 -05:00
|
|
|
# misc
|
|
|
|
catppuccin-sddm
|
|
|
|
uxn
|
2024-12-11 23:37:08 -05:00
|
|
|
];
|
2024-12-17 10:18:06 -05:00
|
|
|
}
|