mirror of
https://github.com/donovanglover/nix-config.git
synced 2024-11-29 11:44:45 +01:00
fa1650198f
tui-journal was cool and although it could work, it's not really worth it over taking advantage of what Logseq has to offer.
135 lines
1.8 KiB
Nix
135 lines
1.8 KiB
Nix
{ pkgs, lib, sakaya, ... }:
|
|
|
|
{
|
|
environment.systemPackages = with pkgs; [
|
|
grimblast
|
|
slade
|
|
osu-lazer-bin
|
|
(pass.withExtensions (ext: with ext; [ pass-otp ]))
|
|
pass
|
|
treefmt
|
|
jamesdsp
|
|
zbar
|
|
sakaya.packages.${system}.sakaya
|
|
|
|
logseq
|
|
mullvad-browser
|
|
spek
|
|
audacity
|
|
gimp
|
|
anki
|
|
sqlitebrowser
|
|
sqlcipher
|
|
kanjidraw
|
|
libreoffice
|
|
inkscape
|
|
krita
|
|
aegisub
|
|
element-desktop
|
|
signal-desktop
|
|
ungoogled-chromium
|
|
qbittorrent
|
|
|
|
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
|
|
yazi
|
|
nodePackages.prisma
|
|
openssl
|
|
|
|
zola
|
|
file
|
|
tessen
|
|
wtype
|
|
mtr
|
|
cointop
|
|
tectonic
|
|
|
|
pipe-rename
|
|
poppler_utils
|
|
wl-clipboard
|
|
lnch
|
|
wev
|
|
dmenu-wayland
|
|
python311Packages.icoextract
|
|
swww
|
|
srb2
|
|
crystalline
|
|
thud
|
|
ironbar
|
|
wallust
|
|
activate-linux
|
|
tango
|
|
obs-studio
|
|
nvd
|
|
hyprdim
|
|
nix-init
|
|
diesel-cli
|
|
litecli
|
|
|
|
colorpanes
|
|
sanctity
|
|
didu
|
|
|
|
nix-search-cli
|
|
satty
|
|
aaaaxy
|
|
lutgen
|
|
sudachi-rs
|
|
mgitstatus
|
|
];
|
|
|
|
nixpkgs.config.allowUnfreePredicate = pkg: builtins.elem (lib.getName pkg) [
|
|
"osu-lazer-bin-2024.302.1"
|
|
];
|
|
|
|
nixpkgs.config.permittedInsecurePackages = [
|
|
"freeimage-unstable-2021-11-01"
|
|
];
|
|
|
|
environment.defaultPackages = [ ];
|
|
}
|