refactor(nix): simplify flake

This commit is contained in:
Jake Stanger 2024-04-17 22:04:19 +01:00
parent 80f16c5037
commit 314bfe7abe
No known key found for this signature in database
GPG Key ID: C51FC8F9CB0BEA61

View File

@ -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: