mirror of
https://github.com/donovanglover/nix-config.git
synced 2024-11-22 16:23:57 +01:00
22e31ff60b
Note that we will continue to use nixpkgs-fmt for the time being here since nixfmt-rfc-style breaks string syntax highlighting and comments like `/* this */` get turned into `# this`. The conversion from lisp-like formatting to something else in flake.nix is a bit unfortunate, but I'd rather have a singular style for the entire code base to make things easier.
87 lines
1.1 KiB
Nix
87 lines
1.1 KiB
Nix
{ pkgs, sakaya, ... }:
|
|
|
|
{
|
|
environment.systemPackages = with pkgs; [
|
|
osu-lazer-bin
|
|
(pass.withExtensions (ext: with ext; [ pass-otp ]))
|
|
pass
|
|
jamesdsp
|
|
zbar
|
|
sakaya.packages.${system}.sakaya
|
|
|
|
sqlcipher
|
|
|
|
fdupes
|
|
mediainfo
|
|
sox
|
|
httpie
|
|
ffmpeg
|
|
killall
|
|
trashy
|
|
whois
|
|
|
|
dig
|
|
yt-dlp
|
|
brightnessctl
|
|
jpegoptim
|
|
playerctl
|
|
recode
|
|
rmlint
|
|
sd
|
|
smartmontools
|
|
hwinfo
|
|
stress
|
|
nixpkgs-review
|
|
choose
|
|
hdparm
|
|
imagemagick
|
|
restic
|
|
watchexec
|
|
mpvpaper
|
|
timg
|
|
ventoy
|
|
wf-recorder
|
|
diskonaut
|
|
nodePackages.prisma
|
|
openssl
|
|
|
|
zola
|
|
file
|
|
tessen
|
|
wtype
|
|
mtr
|
|
cointop
|
|
tectonic
|
|
|
|
pipe-rename
|
|
poppler_utils
|
|
wl-clipboard-rs
|
|
lnch
|
|
wev
|
|
dmenu-wayland
|
|
python311Packages.icoextract
|
|
srb2
|
|
crystalline
|
|
thud
|
|
wallust
|
|
activate-linux
|
|
tango
|
|
nvd
|
|
nix-init
|
|
diesel-cli
|
|
litecli
|
|
lychee
|
|
|
|
nix-search-cli
|
|
satty
|
|
aaaaxy
|
|
lutgen
|
|
sudachi-rs
|
|
pnpm-shell-completion
|
|
];
|
|
|
|
nixpkgs.config.allowUnfree = true;
|
|
|
|
environment.defaultPackages = [ ];
|
|
}
|