summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--scripts/surf_search.nix23
1 files changed, 12 insertions, 11 deletions
diff --git a/scripts/surf_search.nix b/scripts/surf_search.nix
index 233a121..e186bdb 100644
--- a/scripts/surf_search.nix
+++ b/scripts/surf_search.nix
@@ -2,16 +2,17 @@
pkgs.writeShellApplication {
name = "surf_search";
runtimeInputs = with pkgs; [
- dmenu
- xprop
- gnused
- coreutils
+ dmenu
+ xprop
+ gnused
+ coreutils
];
text = builtins.readFile (
- pkgs.replaceVars ../dotfiles/surf/surf.sh {
- dmenu = pkgs.dmenu;
- xprop = pkgs.xprop;
- gnused = pkgs.gnused;
- coreutils = pkgs.coreutils;
- }
- );}
+ pkgs.replaceVars ../dotfiles/surf/surf.sh {
+ dmenu = pkgs.dmenu;
+ xprop = pkgs.xprop;
+ gnused = pkgs.gnused;
+ coreutils = pkgs.coreutils;
+ }
+ );
+}