mirror of
https://github.com/nix-community/disko
synced 2024-11-10 06:14:14 +00:00
ff5127ea0a
Originally this was manually applied with; ```sh nixpkgs-fmt **.nix && statix fix ``` but I overlooked the fact that `**.nix` would only expand to files in the root (I should have used `**/*.nix`). Previous commit adds `nix fmt` support which passes `.` to `nixpkgs-fmt` (if no other path is explicitly specified when running `nix fmt`). This commit includes the changes made by running `nix fmt`.
30 lines
1.1 KiB
Nix
30 lines
1.1 KiB
Nix
{ makeTest ? import <nixpkgs/nixos/tests/make-test-python.nix>
|
|
, eval-config ? import <nixpkgs/nixos/lib/eval-config.nix>
|
|
, pkgs ? (import <nixpkgs> { })
|
|
}@args:
|
|
let
|
|
lib = pkgs.lib;
|
|
makeDiskoTest = (pkgs.callPackage ./lib.nix { inherit makeTest eval-config; }).makeDiskoTest;
|
|
|
|
evalTest = name: configFile:
|
|
let
|
|
disko-config = import configFile;
|
|
in
|
|
{
|
|
"${name}-tsp-create" = pkgs.writeScript "create" ((pkgs.callPackage ../. { }).create disko-config);
|
|
"${name}-tsp-mount" = pkgs.writeScript "mount" ((pkgs.callPackage ../. { }).mount disko-config);
|
|
};
|
|
|
|
allTestFilenames =
|
|
builtins.map (lib.removeSuffix ".nix") (
|
|
builtins.filter
|
|
(x: lib.hasSuffix ".nix" x && x != "default.nix" && x != "lib.nix")
|
|
(lib.attrNames (builtins.readDir ./.))
|
|
);
|
|
|
|
allTests = lib.genAttrs allTestFilenames (test: import (./. + "/${test}.nix") { inherit makeDiskoTest pkgs; }) //
|
|
evalTest "lvm-luks-example" ../example/config.nix // {
|
|
standalone = (pkgs.nixos [ ../example/stand-alone/configuration.nix ]).config.system.build.toplevel;
|
|
};
|
|
in
|
|
allTests
|