Auto import all modules

This commit is contained in:
SebastianStork 2024-07-15 19:18:35 +02:00
parent 8559359248
commit 43c8adddb6
7 changed files with 15 additions and 39 deletions

13
flake/dev-shells.nix Normal file
View file

@ -0,0 +1,13 @@
{
perSystem =
{ pkgs, ... }:
{
devShells.sops = pkgs.mkShell {
packages = [
pkgs.sops
pkgs.age
pkgs.ssh-to-age
];
};
};
}