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

30 lines
547 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 {
packages = [
2024-04-23 07:18:42 -05:00
pkgs.flyctl
2024-04-23 21:41:32 -05:00
pkgs.doppler
];
};
});
};
2024-04-23 07:18:42 -05:00
}