21 lines
394 B
Nix
21 lines
394 B
Nix
{ inputs, ... }:
|
|
{
|
|
imports = [
|
|
inputs.flake-parts.flakeModules.easyOverlay
|
|
inputs.flake-parts.flakeModules.modules
|
|
];
|
|
|
|
systems = [
|
|
"x86_64-linux"
|
|
"aarch64-linux"
|
|
];
|
|
|
|
perSystem =
|
|
{ config, pkgs, ... }:
|
|
{
|
|
devShells = {
|
|
default = import ../shell.nix ({ inherit pkgs; } // config.packages);
|
|
};
|
|
formatter = pkgs.nixfmt-rfc-style;
|
|
};
|
|
}
|