mirror of
https://github.com/SebastianStork/nixos-config.git
synced 2026-01-21 15:11:34 +01:00
13 lines
231 B
Nix
13 lines
231 B
Nix
_: {
|
|
perSystem =
|
|
{ inputs', pkgs, ... }:
|
|
{
|
|
devShells.default = pkgs.mkShellNoCC {
|
|
packages = [
|
|
pkgs.just
|
|
pkgs.nh
|
|
inputs'.deploy-rs.packages.default
|
|
];
|
|
};
|
|
};
|
|
}
|