diff --git a/build.zig b/build.zig
index 1e7dade..421a8f8 100644
--- a/build.zig
+++ b/build.zig
@@ -16,7 +16,7 @@ pub fn build(b: *std.Build) void {
     const optimize = b.standardOptimizeOption(.{});
 
     const exe = b.addExecutable(.{
-        .name = "default",
+        .name = "statusbar",
         // In this case the main source file is merely a path, however, in more
         // complicated build scripts, this could be a generated file.
         .root_source_file = .{ .path = "src/main.zig" },
diff --git a/flake.nix b/flake.nix
index bdd88f5..ca96e41 100644
--- a/flake.nix
+++ b/flake.nix
@@ -46,7 +46,7 @@
         pkg = packages.target.${target};
       in {
         type = "app";
-        program = "${pkg}/bin/default";
+        program = "${pkg}/bin/statusbar";
       });
 
       # default bundle