From c35a67f490582cf7f0b7cfc4edfbe973ea03a8e9 Mon Sep 17 00:00:00 2001 From: rhiannon morris Date: Wed, 2 Apr 2025 19:02:01 +0200 Subject: [PATCH] oops --- flake.nix | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/flake.nix b/flake.nix index f3b6081..2244c01 100644 --- a/flake.nix +++ b/flake.nix @@ -23,14 +23,14 @@ ]; - makeApp = name: exe: + makeApp = pkgs: name: exe: { type = "app"; program = "${pkgs.${name}}/bin/${defaultTo name exe}"; }; linuxApps = pkgs: [ - (makeApp "basilisk" null) - (makeApp "isabelle" null) - (makeApp "firefox-esr-alias" "firefox-esr") - (makeApp "inkscape-xwayland" "inkscape") + (makeApp pkgs "basilisk" null) + (makeApp pkgs "isabelle" null) + (makeApp pkgs "firefox-esr-alias" "firefox-esr") + (makeApp pkgs "inkscape-xwayland" "inkscape") ];