fab-city-os-core-chart/flake.nix
2022-11-22 23:26:57 +01:00

27 lines
739 B
Nix

{
description = "fcoscore runtime flake";
inputs = {
nixpkgs.url = "nixpkgs/nixos-unstable";
flake-utils.url = "github:numtide/flake-utils";
flake-compat = {
url = "github:edolstra/flake-compat";
flake = false;
};
pre-commit-hooks.url = "github:cachix/pre-commit-hooks.nix";
};
outputs = {
nixpkgs,
flake-utils,
...
} @ inputs:
flake-utils.lib.eachSystem ["x86_64-linux" "aarch64-linux"] (localSystem: {
devShells.default = import ./nix/shell.nix inputs localSystem;
checks = import ./nix/checks.nix inputs localSystem;
pkgs = import nixpkgs {
inherit localSystem;
config.allowUnfree = true;
config.allowAliases = true;
};
});
}