diff options
| -rw-r--r-- | default.nix | 3 | ||||
| -rw-r--r-- | flake.lock | 27 | ||||
| -rw-r--r-- | flake.nix | 2 |
3 files changed, 30 insertions, 2 deletions
diff --git a/default.nix b/default.nix index 2c76e6b..8399267 100644 --- a/default.nix +++ b/default.nix @@ -100,9 +100,10 @@ in rec { name = "kel-lbm-sims-${version}"; paths = [ kel-lbm.core - kel-lbm.sycl examples.cavity_2d_gpu ]; }; }; + + default = release.examples; } diff --git a/flake.lock b/flake.lock new file mode 100644 index 0000000..4c9c301 --- /dev/null +++ b/flake.lock @@ -0,0 +1,27 @@ +{ + "nodes": { + "nixpkgs": { + "locked": { + "lastModified": 1767799921, + "narHash": "sha256-r4GVX+FToWVE2My8VVZH4V0pTIpnu2ZE8/Z4uxGEMBE=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "d351d0653aeb7877273920cd3e823994e7579b0b", + "type": "github" + }, + "original": { + "owner": "NixOS", + "ref": "nixos-25.11", + "repo": "nixpkgs", + "type": "github" + } + }, + "root": { + "inputs": { + "nixpkgs": "nixpkgs" + } + } + }, + "root": "root", + "version": 7 +} @@ -8,6 +8,6 @@ pkgs = nixpkgs.legacyPackages.x86_64-linux; packagesSet = import ./default.nix { inherit pkgs; }; in { - packages.x86_64-linux = packagesSet; + packages.x86_64-linux = packagesSet.release.examples; }; } |
