flake.nix: add devShell

This commit is contained in:
Oystein Kristoffer Tveit 2024-01-14 03:41:58 +01:00
parent 03f221a807
commit 832c95198d
Signed by: oysteikt
GPG Key ID: 9F2F7D8250F35146
1 changed files with 5 additions and 1 deletions

View File

@ -39,5 +39,9 @@
];
};
};
devShells.${system}.default = pkgs.mkShell {
packages = with pkgs; [ poetry sqlite ];
};
};
}
}