fix: update all flake.locks

This commit is contained in:
Artur Manuel 2024-12-04 17:35:06 +00:00
commit f79afe59c3
10 changed files with 132 additions and 127 deletions

View file

@ -1,10 +1,14 @@
{
description = "Rust Developer Environment";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs";
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
rust.url = "github:oxalica/rust-overlay";
};
outputs = { self, nixpkgs, rust }: let
outputs = {
self,
nixpkgs,
rust,
}: let
systems = [
"x86_64-linux"
"aarch64-linux"
@ -15,12 +19,12 @@
pkgs = import nixpkgs {
inherit system;
overlays = [
(import rust)
(import rust)
];
};
inherit system;
in {
rust-app = pkgs.callPackage ./nix/package.nix { };
rust-app = pkgs.callPackage ./nix/package.nix {};
default = self.packages.${system}.rust-app;
});
@ -28,7 +32,7 @@
pkgs = import nixpkgs {
inherit system;
overlays = [
(import rust)
(import rust)
];
};
inherit system;