2024-03-07 19:27:15 +00:00
|
|
|
{
|
|
|
|
inputs.nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
|
2024-03-07 19:31:59 +00:00
|
|
|
inputs.lix = {
|
2024-03-09 07:17:56 +00:00
|
|
|
url = "git+ssh://git@git.lix.systems/lix-project/lix.git";
|
2024-03-07 19:31:59 +00:00
|
|
|
flake = false;
|
|
|
|
};
|
2024-03-07 19:27:15 +00:00
|
|
|
inputs.flake-utils.url = "github:numtide/flake-utils";
|
2024-03-25 00:17:53 +00:00
|
|
|
inputs.flakey-profile.url = "github:lf-/flakey-profile";
|
2024-03-07 19:27:15 +00:00
|
|
|
|
2024-03-25 20:44:56 +00:00
|
|
|
outputs = inputs@{ self, nixpkgs, lix, flake-utils, flakey-profile, ... }:
|
|
|
|
let versionSuffix = "pre${builtins.substring 0 8 lix.lastModifiedDate}-${lix.shortRev}";
|
|
|
|
in {
|
|
|
|
inherit inputs;
|
|
|
|
nixosModules.default = import ./module.nix { inherit lix versionSuffix; };
|
|
|
|
overlays.default = import ./overlay.nix { inherit lix versionSuffix; };
|
|
|
|
} // flake-utils.lib.eachDefaultSystem (system:
|
|
|
|
let
|
|
|
|
pkgs = import nixpkgs {
|
|
|
|
inherit system;
|
|
|
|
overlays = [ self.overlays.default ];
|
|
|
|
};
|
2024-05-04 00:18:19 +00:00
|
|
|
|
|
|
|
linux64BitSystems = [
|
|
|
|
"x86_64-linux"
|
|
|
|
"aarch64-linux"
|
|
|
|
];
|
|
|
|
|
|
|
|
inherit (pkgs) lib;
|
2024-03-25 20:44:56 +00:00
|
|
|
in
|
|
|
|
{
|
|
|
|
inherit pkgs;
|
2024-04-16 03:06:52 +00:00
|
|
|
packages = {
|
|
|
|
default = pkgs.nixVersions.nix_2_18;
|
|
|
|
inherit (pkgs) nix-doc nix-eval-jobs;
|
|
|
|
};
|
2024-03-25 00:14:18 +00:00
|
|
|
|
2024-03-25 20:44:56 +00:00
|
|
|
packages.system-profile = import ./system-profile.nix { inherit pkgs flakey-profile; };
|
2024-05-04 00:13:57 +00:00
|
|
|
|
|
|
|
nixosTests = pkgs.recurseIntoAttrs (pkgs.callPackage ./test-nixos.nix { lix-module = self.nixosModules.default; });
|
|
|
|
|
|
|
|
checks = {
|
|
|
|
inherit (self.packages.${system}) default nix-eval-jobs;
|
2024-05-04 00:18:19 +00:00
|
|
|
} // lib.optionalAttrs (lib.elem system linux64BitSystems) {
|
|
|
|
inherit (self.nixosTests.${system}) it-builds;
|
2024-05-04 00:13:57 +00:00
|
|
|
};
|
2024-03-25 20:44:56 +00:00
|
|
|
});
|
2024-03-07 19:27:15 +00:00
|
|
|
}
|