export gsf package and hardware.gsf nixos module
Tests / test_core_function (push) Failing after 12s

This commit is contained in:
2026-03-25 10:28:31 +00:00
parent d359a2048f
commit af9f3e3567
4 changed files with 182 additions and 2 deletions
+21 -1
View File
@@ -10,13 +10,33 @@
let
eachSystem = flake-utils.lib.eachDefaultSystem;
in
eachSystem (system:
{
nixosModules.default = import ./nix/module.nix;
}
// eachSystem (system:
let
pkgs = import nixpkgs {
inherit system;
config.allowUnfree = false;
};
gsfTools = pkgs.callPackage ./nix/package.nix {
src = self;
};
in {
packages.default = gsfTools;
packages.gsf-tools = gsfTools;
apps.gsf = flake-utils.lib.mkApp {
drv = gsfTools;
name = "gsf";
};
apps.gsfd = flake-utils.lib.mkApp {
drv = gsfTools;
name = "gsfd";
};
devShells.default = pkgs.mkShell {
packages = with pkgs; [
rustc