From adf4ce36a62d17740936c6b6fafc47d824455f67 Mon Sep 17 00:00:00 2001 From: lucasew Date: Mon, 9 Dec 2024 22:25:14 -0300 Subject: [PATCH] containers/editor-basic: init Signed-off-by: lucasew --- nix/containers/default.nix | 2 ++ nix/containers/editor-basic/default.nix | 10 ++++++++++ 2 files changed, 12 insertions(+) create mode 100644 nix/containers/editor-basic/default.nix diff --git a/nix/containers/default.nix b/nix/containers/default.nix index 9f0a8966..ff0ec532 100644 --- a/nix/containers/default.nix +++ b/nix/containers/default.nix @@ -13,6 +13,7 @@ gzip, which, curl, + vim, less, wget, man, @@ -74,6 +75,7 @@ let coreutils-full ] ++ lib.optionals interactive [ + vim gawk gnutar gzip diff --git a/nix/containers/editor-basic/default.nix b/nix/containers/editor-basic/default.nix new file mode 100644 index 00000000..e3ba2e50 --- /dev/null +++ b/nix/containers/editor-basic/default.nix @@ -0,0 +1,10 @@ +{ helix +, ... +}: + +{ + interactive = true; + contents = [ + helix + ]; +}