mirror of
https://github.com/srid/nixos-config.git
synced 2026-04-19 11:31:25 +08:00
15 lines
332 B
Nix
15 lines
332 B
Nix
{ ... }:
|
|
{
|
|
perSystem = { inputs', pkgs, ... }: {
|
|
devShells.default = pkgs.mkShell {
|
|
name = "nixos-config-shell";
|
|
meta.description = "Dev environment for nixos-config";
|
|
packages = with pkgs; [
|
|
just
|
|
nixd
|
|
nix-output-monitor
|
|
inputs'.agenix.packages.default
|
|
];
|
|
};
|
|
};
|
|
}
|