mirror of
https://github.com/SebastianStork/nixos-installer.git
synced 2026-01-21 14:31:34 +01:00
12 lines
179 B
Nix
12 lines
179 B
Nix
{
|
|
perSystem =
|
|
{ pkgs, system, ... }:
|
|
{
|
|
devShells.default = pkgs.mkShell {
|
|
packages = [
|
|
pkgs.sops
|
|
pkgs.age
|
|
];
|
|
};
|
|
};
|
|
}
|