fix: bfs nixosConfiguration check

This commit is contained in:
2025-12-05 21:01:53 +00:00
parent 9a5bfa3f80
commit 3b506a7888

View File

@@ -73,14 +73,16 @@
packages.${system} = import ./package { inherit flake self inputs pkgs system; };
devShells.${system} = import ./devshell { inherit flake self inputs pkgs system; };
legacyPackages.${system} = import ./legacy { inherit flake self inputs pkgs system; };
nixosConfigurations = {
"bfs|${system}" = import ./nixos/system/bfs { inherit flake self inputs system; };
};
nixosConfigurations = {};
checks.${system} = import ./test { inherit flake self inputs pkgs system; };
}) // {
lib = self-lib;
overlays.default = import ./overlay { inherit flake self inputs; };
nixosModules = import ./nixos/module { inherit flake self inputs; };
templates = import ./template { inherit flake self inputs; };
nixosConfigurations
# NOTE(yukkop): in bfs one of dependencies is shadow-4.17.4 that
# unsupported on aarch64-darwin
."bfs|x86_64-linux" = import ./nixos/system/bfs { inherit flake self inputs; system = "x86_64-linux"; };
};
}