diff options
Diffstat (limited to 'nixos/profiles')
-rw-r--r-- | nixos/profiles/workstation/default.nix | 2 | ||||
-rw-r--r-- | nixos/profiles/workstation/scripts/ed | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/nixos/profiles/workstation/default.nix b/nixos/profiles/workstation/default.nix index ec84c94..052a3c8 100644 --- a/nixos/profiles/workstation/default.nix +++ b/nixos/profiles/workstation/default.nix @@ -40,6 +40,8 @@ in (callPackage "${sources.agenix}/pkgs/agenix.nix" {}) vim-full + skim + (writeShellScriptBin "ed" (builtins.readFile ./scripts/ed)) unzip diff --git a/nixos/profiles/workstation/scripts/ed b/nixos/profiles/workstation/scripts/ed new file mode 100644 index 0000000..a3dd433 --- /dev/null +++ b/nixos/profiles/workstation/scripts/ed @@ -0,0 +1,2 @@ +#!/usr/bin/env bash +$VISUAL $(find . -not -path "*/.*" | sk --no-info "$@") |