This commit is contained in:
2025-10-10 09:38:49 -05:00
parent c5efc3fb44
commit 199cfcc92e
7 changed files with 31 additions and 4 deletions

View File

@@ -4,5 +4,6 @@
./zsh
./git.nix
./packages.nix
./nvim
];
}

View File

@@ -0,0 +1 @@
{ imports = [ ./nvim.nix ]; }

Submodule modules/home/nvim/nvchad/starter added at e3572e1f5e

View File

@@ -0,0 +1,7 @@
{
hj = {
files = {
".config/nvim".source = ./nvchad/starter;
};
};
}

View File

@@ -6,7 +6,7 @@
{
hjem.users.${username}.packages = with pkgs; [
lunarvim
neovim
statix
git
zsh

12
modules/home/zsh/.zshrc Normal file
View File

@@ -0,0 +1,12 @@
HISTFILE=~/.histfile
HISTSIZE=1000
SAVEHIST=10000
setopt autocd extendedglob nomatch notify
unsetopt beep
bindkey -v
zstyle :compinstall filename '/home/poslop/.zshrc'
autoload -Uz compinit
compinit

View File

@@ -1,6 +1,11 @@
{ username, ... }:
{
config.hjem.users.${username}.rum.programs.zsh = {
enable = true;
# hj.rum.programs.zsh = {
# enable = true;
# };
hj = {
files = {
".zshrc".source = ./.zshrc;
};
};
}