Skip to content

Commit

Permalink
a few updates to add asciidoctor, d2 diagrams
Browse files Browse the repository at this point in the history
  • Loading branch information
kclejeune committed Apr 22, 2024
1 parent 6c0a15d commit 50dd99e
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 2 additions & 0 deletions modules/home-manager/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -51,13 +51,15 @@
# define package definitions for current user environment
packages = with pkgs; [
# age
asciidoctor
alejandra
cachix
cb
cirrus-cli
comma
coreutils-full
curl
d2
devbox
diffutils
dive
Expand Down
1 change: 1 addition & 0 deletions modules/home-manager/nvim/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@
# vim addon utilities
direnv-vim
ranger-vim
zoxide-vim
];
extraConfig = ''
${config.lib.vimUtils.readVimConfig ./settings.lua}
Expand Down
5 changes: 2 additions & 3 deletions modules/home-manager/shell.nix
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
functions = builtins.readFile ./functions.sh;
aliases =
rec {
cd = "z";
ls = "${pkgs.coreutils}/bin/ls --color=auto -h";
la = "${ls} -a";
ll = "${ls} -la";
Expand All @@ -28,9 +29,7 @@
. "${config.home.homeDirectory}/.asdf/asdf.sh"
. "${config.home.homeDirectory}/.asdf/completions/asdf.bash"
fi
if command -v devbox >/dev/null; then
eval "$(devbox global shellenv)"
fi
eval "$(${pkgs.devbox}/bin/devbox global shellenv)"
'';
in {
programs.zsh = let
Expand Down

0 comments on commit 50dd99e

Please sign in to comment.