configuration.nix/flake-modules/devshells.nix
Jalil David Salamé Messina 0e170dd365
Some checks failed
/ check (push) Successful in 9s
/ build-packages (push) Failing after 15s
/ build-vm (push) Has been skipped
/ report-size (push) Has been skipped
feat: replace jpassmenu with a python version
There is no reason for it to be a Rust program
2025-05-17 13:47:40 +02:00

14 lines
309 B
Nix

_: {
perSystem =
{ pkgs, self', ... }:
{
devShells.default = pkgs.mkShellNoCC {
buildInputs = [
pkgs.just
self'.packages.nvim
pkgs.uv
];
QEMU_OPTS_WL = "-enable-kvm -nodefaults -m 4G -cpu host -smp 4 -device virtio-gpu";
};
};
}