diff options
author | Aria <me@aria.rip> | 2023-02-03 15:53:01 +0000 |
---|---|---|
committer | Aria <me@aria.rip> | 2023-02-03 15:53:01 +0000 |
commit | d82ed204b82b9774e266a74432f252ae76a63eee (patch) | |
tree | 9e1e64c7f5eaf0e8b6fd5828e3c83f88060dbe61 | |
parent | 15c9b9308d353d558f7c4fc2fe03012afc84be40 (diff) |
fix flake app
-rw-r--r-- | flake.nix | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -18,7 +18,7 @@ src = ./.; - vendorSha256 = "sha256-pQpattmS9VmO3ZIQUFn66az8GSmB4IvYhTTCFn6SUmo="; + vendorSha256 = "sha256-gItYVP5ZOMH1xxuw9YttpWfwfL5wckp37q1aRoFPjX0="; }; in { @@ -26,8 +26,9 @@ # Provide some binary packages for selected system types. packages.default = doe; apps.default = { - drv = doe; name = "doe"; + type = "app"; + program = "${doe}/bin/doe"; }; devShells.default = pkgs.mkShell { |