Move flags to config file, and add more options. Mirror some in the module.
41 lines
727 B
Nix
41 lines
727 B
Nix
{ inputs, ... }:
|
|
{
|
|
imports = [
|
|
inputs.treefmt-nix.flakeModule
|
|
./package.nix
|
|
./tests.nix
|
|
];
|
|
|
|
flake.nixosModules =
|
|
let
|
|
webnsupdate = ../module.nix;
|
|
in
|
|
{
|
|
default = webnsupdate;
|
|
inherit webnsupdate;
|
|
};
|
|
|
|
perSystem =
|
|
{ pkgs, ... }:
|
|
{
|
|
# Setup formatters
|
|
treefmt = {
|
|
projectRootFile = "flake.nix";
|
|
programs = {
|
|
nixfmt.enable = true;
|
|
rustfmt.enable = true;
|
|
statix.enable = true;
|
|
typos.enable = true;
|
|
};
|
|
};
|
|
|
|
devShells.default = pkgs.mkShellNoCC {
|
|
packages = with pkgs; [
|
|
cargo-insta
|
|
cargo-udeps
|
|
mold
|
|
git-cliff
|
|
];
|
|
};
|
|
};
|
|
}
|