oops
This commit is contained in:
parent
4a9e524f66
commit
c35a67f490
1 changed files with 5 additions and 5 deletions
10
flake.nix
10
flake.nix
|
@ -23,14 +23,14 @@
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|
||||||
makeApp = name: exe:
|
makeApp = pkgs: name: exe:
|
||||||
{ type = "app"; program = "${pkgs.${name}}/bin/${defaultTo name exe}"; };
|
{ type = "app"; program = "${pkgs.${name}}/bin/${defaultTo name exe}"; };
|
||||||
|
|
||||||
linuxApps = pkgs: [
|
linuxApps = pkgs: [
|
||||||
(makeApp "basilisk" null)
|
(makeApp pkgs "basilisk" null)
|
||||||
(makeApp "isabelle" null)
|
(makeApp pkgs "isabelle" null)
|
||||||
(makeApp "firefox-esr-alias" "firefox-esr")
|
(makeApp pkgs "firefox-esr-alias" "firefox-esr")
|
||||||
(makeApp "inkscape-xwayland" "inkscape")
|
(makeApp pkgs "inkscape-xwayland" "inkscape")
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue