my nix flake.
1{ pkgs, ... }:
2
3{
4 environment.systemPackages = with pkgs; [
5 htop
6 vim
7 wget
8 curl
9 git
10 just
11 openssl
12 imv
13 fuse3
14 wirelesstools
15 jq
16 mpv
17 unzip
18 file
19 playerctl
20 gnupg
21 killall
22 imagemagick
23 gnome-keyring
24 libsecret
25
26 fastfetch
27 kittysay
28 hyfetch
29
30 nautilus
31 xfce.thunar
32
33 ];
34}