From a71bfeffe4f970e976411b03bc36c38d72dbc6a0 Mon Sep 17 00:00:00 2001 From: Christopher James Hayward Date: Fri, 24 Nov 2023 17:55:26 -0500 Subject: [PATCH] Fix spacing --- modules/firefox.nix | 1 + shells/dart.nix | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/modules/firefox.nix b/modules/firefox.nix index c847b5f..fea7b77 100644 --- a/modules/firefox.nix +++ b/modules/firefox.nix @@ -5,6 +5,7 @@ with lib; with lib.types; let cfg = config.modules.firefox; + myFirefox = pkgs.writeShellScriptBin "firefox" '' HOME=~/.local/share/mozilla ${pkgs.firefox-bin}/bin/firefox ''; diff --git a/shells/dart.nix b/shells/dart.nix index 708d07a..8b0a4cc 100644 --- a/shells/dart.nix +++ b/shells/dart.nix @@ -8,6 +8,7 @@ mkShell { flutter ]; shellHook = '' - FLUTTER_SDK_DIR=${flutter}/bin/cache/dart-sdk/ + export FLUTTER_SDK_DIR=${flutter}/bin/cache/dart-sdk/ + export PATH="$HOME/.pub-cache/bin":"$PATH" ''; }