diff options
author | Kjetil Orbekk <kj@orbekk.com> | 2022-11-25 11:32:43 -0500 |
---|---|---|
committer | Kjetil Orbekk <kj@orbekk.com> | 2022-11-25 11:32:43 -0500 |
commit | f4713b1ccf508c0ec1192ce8d800f21111e655e1 (patch) | |
tree | 25d5641b006af4533c2a25e762526428dc397a85 /flake.nix | |
parent | 24c71b3ddbcd793e533ee518bc1f82b1b5fa3d9e (diff) |
Extract authenticator logic into a trait
This is in preparation for providing a fake authenticator backend
Diffstat (limited to 'flake.nix')
-rw-r--r-- | flake.nix | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -4,6 +4,10 @@ nixpkgs.url = "nixpkgs"; }; + # TODO: Stuff to include in rust development environment: + # - trunk + # - cargo-watch + # - sqlx-cli outputs = { self, nixpkgs, flake-utils }: flake-utils.lib.eachDefaultSystem (system: let pkgs = nixpkgs.legacyPackages.${system}; |