mirror of
https://github.com/SebastianStork/nixos-config.git
synced 2026-03-22 23:29:08 +01:00
12 lines
177 B
Nix
12 lines
177 B
Nix
_: {
|
|
perSystem =
|
|
{ pkgs, ... }:
|
|
{
|
|
devShells.default = pkgs.mkShellNoCC {
|
|
packages = [
|
|
pkgs.just
|
|
pkgs.nh
|
|
];
|
|
};
|
|
};
|
|
}
|