nix-config/modules/packages.nix

47 lines
652 B
Nix
Raw Normal View History

{ pkgs, sakaya, ... }:
{
environment.systemPackages = with pkgs; [
osu-lazer-bin
2023-07-01 20:21:54 +02:00
(pass.withExtensions (ext: with ext; [ pass-otp ]))
2023-06-11 15:22:32 +02:00
pass
jamesdsp
2023-07-01 20:21:54 +02:00
zbar
2023-10-28 17:35:05 +02:00
sakaya.packages.${system}.sakaya
2023-06-05 18:16:21 +02:00
sqlcipher
jpegoptim
recode
rmlint
smartmontools
restic
watchexec
ventoy
2024-01-06 01:09:04 +01:00
nodePackages.prisma
openssl
2023-07-01 20:21:54 +02:00
zola
tectonic
2024-01-06 01:09:04 +01:00
pipe-rename
poppler_utils
crystalline
2023-07-16 00:57:17 +02:00
tango
2023-07-23 21:40:00 +02:00
nvd
2023-08-01 18:31:14 +02:00
nix-init
2023-10-25 19:29:02 +02:00
diesel-cli
litecli
lychee
2023-11-18 20:54:19 +01:00
nix-search-cli
2024-01-06 01:09:04 +01:00
lutgen
sudachi-rs
pnpm-shell-completion
];
nixpkgs.config.allowUnfree = true;
environment.defaultPackages = [ ];
2023-05-18 21:54:15 +02:00
}