Skip to content

Commit

Permalink
refactor(nix): simplify flake
Browse files Browse the repository at this point in the history
  • Loading branch information
JakeStanger committed Apr 17, 2024
1 parent 80f16c5 commit 314bfe7
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -97,16 +97,13 @@

apps = genSystems (system:
let pkgs = pkgsFor system;
in {
default = {
type = "app";
program = "${pkgs.ironbar}/bin/ironbar";
};

in rec {
ironbar = {
type = "app";
program = "${pkgs.ironbar}/bin/ironbar";
};

default = ironbar;
});

devShells = genSystems (system:
Expand Down

0 comments on commit 314bfe7

Please sign in to comment.