mirror of
https://github.com/Zedfrigg/ironbar.git
synced 2025-07-01 18:51:04 +02:00
refactor(nix): simplify flake
This commit is contained in:
parent
80f16c5037
commit
314bfe7abe
1 changed files with 3 additions and 6 deletions
|
@ -97,16 +97,13 @@
|
||||||
|
|
||||||
apps = genSystems (system:
|
apps = genSystems (system:
|
||||||
let pkgs = pkgsFor system;
|
let pkgs = pkgsFor system;
|
||||||
in {
|
in rec {
|
||||||
default = {
|
|
||||||
type = "app";
|
|
||||||
program = "${pkgs.ironbar}/bin/ironbar";
|
|
||||||
};
|
|
||||||
|
|
||||||
ironbar = {
|
ironbar = {
|
||||||
type = "app";
|
type = "app";
|
||||||
program = "${pkgs.ironbar}/bin/ironbar";
|
program = "${pkgs.ironbar}/bin/ironbar";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
default = ironbar;
|
||||||
});
|
});
|
||||||
|
|
||||||
devShells = genSystems (system:
|
devShells = genSystems (system:
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue