From f87582250fd324cd04886cd84a7ee58d03133b13 Mon Sep 17 00:00:00 2001 From: Adrian Kummerlaender Date: Sun, 24 Feb 2019 21:02:29 +0100 Subject: Add nix-shell environment type to tasker Allows for convenient management of non-project-specific shell environments. --- custom.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'custom.nix') diff --git a/custom.nix b/custom.nix index 4928f2a..06b6676 100644 --- a/custom.nix +++ b/custom.nix @@ -21,12 +21,15 @@ in { default = "~/"; }; type = mkOption { - type = types.enum [ "launcher" "terminal" ]; + type = types.enum [ "launcher" "terminal" "environment" ]; default = "launcher"; }; command = mkOption { type = types.str; }; + environment = mkOption { + type = types.package; + }; }; }); }; -- cgit v1.2.3