Setup hooks for chezmoi apply, setup nushell

This commit is contained in:
Tyler Mayoff 2025-02-01 10:27:14 -05:00
parent fe689a9a67
commit 2e6db891ec
7 changed files with 38 additions and 89 deletions

View file

@ -1,8 +1,6 @@
{
inputs,
outputs,
# lib,
# config,
pkgs,
...
}: {
@ -16,6 +14,7 @@
xdg.enable = true;
imports = [
./shell.nix
./fish.nix
./nushell.nix
# ./nom.nix
@ -32,9 +31,6 @@
};
home.packages = with pkgs; [
# Fonts
#(nerdfonts.override {fonts = ["JetBrainsMono"];})
unstable.nix-output-monitor
# dotfiles
@ -114,6 +110,10 @@
shellWrapperName = "y";
};
programs.zoxide = {
enable = true;
};
home.stateVersion = "23.11";
programs.home-manager.enable = true;
}