mirror of
https://github.com/donovanglover/nix-config.git
synced 2024-11-22 08:14:00 +01:00
d1a78a7a57
Although this was cute, there are simply too many bugs and other inconveniences to be worth it. For example, the bar cannot be focused when a workspace has a fullscreen application.
110 lines
1.5 KiB
Nix
110 lines
1.5 KiB
Nix
{ pkgs, lib, sakaya, ... }:
|
|
|
|
{
|
|
environment.systemPackages = with pkgs; [
|
|
grimblast
|
|
slade
|
|
typespeed
|
|
osu-lazer-bin
|
|
(pass.withExtensions (ext: with ext; [ pass-otp ]))
|
|
pass
|
|
treefmt
|
|
jamesdsp
|
|
zbar
|
|
sakaya.packages.${pkgs.system}.sakaya
|
|
|
|
logseq
|
|
mullvad-browser
|
|
spek
|
|
audacity
|
|
gimp
|
|
anki
|
|
sqlitebrowser
|
|
kanjidraw
|
|
libreoffice
|
|
|
|
gdu
|
|
fdupes
|
|
mediainfo
|
|
cmatrix
|
|
sox
|
|
httpie
|
|
p7zip
|
|
rsync
|
|
unar
|
|
genact
|
|
ffmpeg
|
|
killall
|
|
trashy
|
|
whois
|
|
dwt1-shell-color-scripts
|
|
dig
|
|
yt-dlp
|
|
neofetch
|
|
brightnessctl
|
|
zellij
|
|
hexyl
|
|
nb
|
|
jpegoptim
|
|
playerctl
|
|
recode
|
|
rmlint
|
|
sd
|
|
smartmontools
|
|
visidata
|
|
scc
|
|
hwinfo
|
|
stress
|
|
nixpkgs-review
|
|
choose
|
|
gum
|
|
hdparm
|
|
imagemagick
|
|
onefetch
|
|
restic
|
|
watchexec
|
|
memento
|
|
mpvpaper
|
|
timg
|
|
ventoy
|
|
wf-recorder
|
|
diskonaut
|
|
|
|
zola
|
|
file
|
|
tessen
|
|
wtype
|
|
mtr
|
|
cointop
|
|
|
|
poppler_utils
|
|
wl-clipboard
|
|
lnch
|
|
wev
|
|
python311Packages.icoextract
|
|
swww
|
|
srb2
|
|
crystalline
|
|
go-thumbnailer
|
|
pipe-rename
|
|
cmus
|
|
ironbar
|
|
wallust
|
|
activate-linux-wayland
|
|
hyprland-relative-workspace
|
|
eww-wayland
|
|
tango
|
|
obs-studio
|
|
nvd
|
|
broot
|
|
hyprdim
|
|
nix-init
|
|
];
|
|
|
|
nixpkgs.config.allowUnfreePredicate = pkg: builtins.elem (lib.getName pkg) [
|
|
"osu-lazer-bin"
|
|
];
|
|
|
|
environment.defaultPackages = [ ];
|
|
}
|