This repository has been archived on 2024-07-08. You can view files and clone it, but cannot push or open issues or pull requests.
nix-config-tn/flyio/vaultwarden/flake.nix

31 lines
568 B
Nix
Raw Normal View History

2024-04-23 07:18:42 -05:00
{
inputs = {
# nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
systems.url = "github:nix-systems/default";
};
2024-04-23 21:41:32 -05:00
outputs =
{ systems
, nixpkgs
, ...
} @ inputs:
let
eachSystem = f:
nixpkgs.lib.genAttrs (import systems) (
system:
2024-04-23 07:18:42 -05:00
f nixpkgs.legacyPackages.${system}
2024-04-23 21:41:32 -05:00
);
in
{
devShells = eachSystem (pkgs: {
default = pkgs.mkShell {
2024-04-23 23:37:41 -05:00
packages = with pkgs; [
flyctl
doppler
go-task
2024-04-23 21:41:32 -05:00
];
};
});
};
2024-04-23 07:18:42 -05:00
}