aboutsummaryrefslogtreecommitdiff
path: root/shell.nix
diff options
context:
space:
mode:
authortdro <tdro@noreply.example.com>2022-06-23 03:44:01 -0400
committertdro <tdro@noreply.example.com>2022-06-23 03:44:01 -0400
commit3c041d57e31fface55bd9103a1f73af663854955 (patch)
tree8c66b6d2a6dc14f2b752c17ffebba9748db29dc0 /shell.nix
parent417569776aa7b199e8ac995d12db8326e350fbb3 (diff)
downloadcanory-3c041d57e31fface55bd9103a1f73af663854955.tar.gz
canory-3c041d57e31fface55bd9103a1f73af663854955.tar.bz2
canory-3c041d57e31fface55bd9103a1f73af663854955.zip
shell.nix: Expose hugo externally
Diffstat (limited to 'shell.nix')
-rw-r--r--shell.nix6
1 files changed, 5 insertions, 1 deletions
diff --git a/shell.nix b/shell.nix
index 8af39b1..7b54486 100644
--- a/shell.nix
+++ b/shell.nix
@@ -48,9 +48,12 @@ let
description = "A fast and modern static website engine";
maintainers = with lib.maintainers; [ schneefux Br1ght0ne Frostman ];
};
- }) { };
+ }) { };
in mkShellPure {
+
+ inherit hugo;
+
packages = [
hugo
validatornu
@@ -63,6 +66,7 @@ in mkShellPure {
pkgs.subversion
pkgs.yj
];
+
shellHook = ''
export PS1='\h (${name}) \W \$ '
'';