1
0
forked from extern/nix-config
donovanglover-nix-config/src/main.nix
Donovan Glover 8ffb196c0b
meta: Don't use variables
The previous commit didn't actually work, and I shouldn't need to
change the variables often, so it's much simpler to not have them.

In the event that I do need to change something, rg and sd should get
the job done well.
2023-06-22 11:10:17 -04:00

93 lines
1.2 KiB
Nix

{ pkgs, lib, ... }: {
environment.systemPackages = with pkgs; [
grimblast
waycorner
slade
typespeed
osu-lazer-bin
pass
treefmt
jamesdsp
logseq
mullvad-browser
spek
gdu
fdupes
mediainfo
ponysay
lolcat
cmatrix
sox
httpie
p7zip
rsync
unar
genact
ffmpeg
killall
trashy
whois
dwt1-shell-color-scripts
dig
yt-dlp
neofetch
pywal
brightnessctl
zellij
hexyl
nb
jpegoptim
playerctl
recode
rmlint
sd
smartmontools
visidata
scc
hwinfo
stress
choose
gum
hdparm
imagemagick
onefetch
restic
watchexec
memento
mpvpaper
timg
ventoy
wf-recorder
mdcat
mdbook
zola
file
tessen
wtype
mtr
cointop
poppler_utils
wl-clipboard
lnch
wev
swww
kickoff
greetd.tuigreet
hyprland-autoname-workspaces
srb2
crystalline
go-thumbnailer
];
nixpkgs.config.allowUnfreePredicate = pkg:
builtins.elem (lib.getName pkg) [
"osu-lazer-bin"
];
environment.defaultPackages = [ ];
system.stateVersion = "22.11";
}