nixos-module/flake.nix

40 lines
1.3 KiB
Nix
Raw Normal View History

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 = {
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 ];
};
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; };
nixosTests = pkgs.recurseIntoAttrs (pkgs.callPackage ./test-nixos.nix { lix-module = self.nixosModules.default; });
checks = {
inherit (self.nixosTests.${system}) it-builds;
inherit (self.packages.${system}) default nix-eval-jobs;
};
2024-03-25 20:44:56 +00:00
});
2024-03-07 19:27:15 +00:00
}