updated zsh with devenv

This commit is contained in:
John Lancaster
2026-06-03 08:50:02 -05:00
parent fcff43adb1
commit 6bb73959c6
3 changed files with 9 additions and 4 deletions
+2 -1
View File
@@ -1 +1,2 @@
result/
result/
.devenv/
+2 -2
View File
@@ -4,10 +4,11 @@
outputs = inputs: inputs.flake-parts.lib.mkFlake { inherit inputs; } (inputs.import-tree ./modules);
inputs = {
devenv.url = "github:cachix/devenv";
flake-file.url = "github:vic/flake-file";
flake-parts = {
url = "github:hercules-ci/flake-parts";
inputs.nixpkgs-lib.follows = "nixpkgs-lib";
inputs.nixpkgs-lib.follows = "nixpkgs";
};
home-manager.url = "github:nix-community/home-manager";
import-tree.url = "github:vic/import-tree";
@@ -20,7 +21,6 @@
flake = false;
};
nixpkgs.url = "https://channels.nixos.org/nixpkgs-unstable/nixexprs.tar.xz";
nixpkgs-lib.follows = "nixpkgs";
nvf = {
url = "github:notashelf/nvf";
inputs.nixpkgs.follows = "nixpkgs";
+5 -1
View File
@@ -96,6 +96,7 @@ in
env = {
LANG = "en_US.UTF-8";
COLORTERM = "truecolor";
DEVENV_SHELL_TYPE = "zsh";
};
settings = {
completion = {
@@ -133,12 +134,15 @@ in
HOSTNAME=$(hostname -s)
${aliasStr}
eval "$(devenv hook zsh)"
'';
extraPackages = with pkgs; [
lazydocker
lazygit
lazydocker
self'.packages.shell-tools
self'.packages.neovim-min
devenv
];
}).wrapper;
};