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,31 +1,26 @@
{
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-24.05";
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
};
outputs =
{ nixpkgs, ... }:
let
lib = nixpkgs.lib;
systems = [
"x86_64-linux"
"aarch64-linux"
];
forAllSystems = f: lib.genAttrs systems (system: f { pkgs = nixpkgs.legacyPackages.${system}; });
in
{
formatter = forAllSystems ({ pkgs }: pkgs.nixfmt-rfc-style);
devShells = forAllSystems (
{ pkgs }:
{
default = pkgs.callPackage ./flake/devshell.nix { };
}
);
packages = forAllSystems (
{ pkgs }:
{
svelte-example = pkgs.callPackage ./flake/derivation.nix { };
}
);
};
outputs = {nixpkgs, ...}: let
lib = nixpkgs.lib;
systems = [
"x86_64-linux"
"aarch64-linux"
];
forAllSystems = f: lib.genAttrs systems (system: f {pkgs = nixpkgs.legacyPackages.${system};});
in {
formatter = forAllSystems ({pkgs}: pkgs.nixfmt-rfc-style);
devShells = forAllSystems (
{pkgs}: {
default = pkgs.callPackage ./flake/devshell.nix {};
}
);
packages = forAllSystems (
{pkgs}: {
svelte-example = pkgs.callPackage ./flake/derivation.nix {};
}
);
};
}