Merge pull request #5 from RAD-Development/update_flake_lock_action

Update flake lock action
This commit is contained in:
Alice Huston 2024-07-28 15:35:23 -04:00 committed by GitHub
commit 3ab655f765
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 24 additions and 6 deletions

12
flake.lock generated
View File

@ -96,11 +96,11 @@
},
"nixpkgs": {
"locked": {
"lastModified": 1721041886,
"narHash": "sha256-++QkbIIyDpJygScgIa/QqjJB4uh2k2zelvFgvY9LFGw=",
"lastModified": 1722179153,
"narHash": "sha256-ZJ75T0GWpLI4hoaL+YxueHD2pXG+VYpYtPJdwbkERVs=",
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "75686331f0a24b0d04e82db7411777a521f51f4f",
"rev": "dcfb2878c687e5eb5fcbc5116969c45c85be34e2",
"type": "github"
},
"original": {
@ -137,11 +137,11 @@
"treefmt-nix": "treefmt-nix"
},
"locked": {
"lastModified": 1721010580,
"narHash": "sha256-qxN9it4uicRKdEjKlSt3BvXC+mWgLlJHNwMztSQsQsE=",
"lastModified": 1721039874,
"narHash": "sha256-XANsG9GYHip8pxZpbqKf/YGv8tIa0xTh289Y+WNBNfw=",
"owner": "nix-community",
"repo": "poetry2nix",
"rev": "7f304a86324aea2026e65e508c82af7127f9b00d",
"rev": "d11c01e58587e5f21037ed6477465a7f26a32e27",
"type": "github"
},
"original": {

View File

@ -1,6 +1,24 @@
{
description = "Application packaged using poetry2nix";
nixConfig = {
substituters = [
"https://cache.nixos.org/?priority=1&want-mass-query=true"
"https://attic.alicehuston.xyz/cache-nix-dot?priority=4&want-mass-query=true"
"https://nix-community.cachix.org/?priority=10&want-mass-query=true"
];
trusted-substituters = [
"https://cache.nixos.org"
"https://attic.alicehuston.xyz/cache-nix-dot"
"https://nix-community.cachix.org"
];
trusted-public-keys = [
"cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY="
"cache-nix-dot:Od9KN34LXc6Lu7y1ozzV1kIXZa8coClozgth/SYE7dU="
"nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs="
];
};
inputs = {
flake-utils.url = "github:numtide/flake-utils";
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable-small";