16 lines
341 B
Nix
16 lines
341 B
Nix
{
|
|
perSystem =
|
|
{ pkgs, ... }:
|
|
{
|
|
devShells.default = pkgs.mkShell {
|
|
name = "nixos-unified-template-shell";
|
|
meta.description = "Shell environment for modifying this Nix configuration";
|
|
packages = with pkgs; [
|
|
ssh-to-age
|
|
sops
|
|
just
|
|
nixd
|
|
];
|
|
};
|
|
};
|
|
}
|