Enable strictDeps on all our toplevel packages #12

Open
abonerib wants to merge 473 commits from abonerib/bscpkgs:enableStrictDeps into master
Showing only changes of commit de7cae6208 - Show all commits

16
flake.nix Normal file
View File

@ -0,0 +1,16 @@
{
inputs.nixpkgs.url = "github:NixOS/nixpkgs/22.11";
outputs = { nixpkgs, ... }: {
nixosConfigurations = {
xeon01 = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
modules = [ ./xeon01/configuration.nix ];
};
xeon07 = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
modules = [ ./xeon07/configuration.nix ];
};
};
};
}