updated home-manager config
This commit is contained in:
parent
21bcfce762
commit
1d0b885192
1 changed files with 10 additions and 0 deletions
10
home.nix
10
home.nix
|
@ -25,6 +25,7 @@
|
||||||
webcord
|
webcord
|
||||||
btop
|
btop
|
||||||
neofetch
|
neofetch
|
||||||
|
direnv
|
||||||
#zsh-autosuggestions
|
#zsh-autosuggestions
|
||||||
#zsh-autocomplete
|
#zsh-autocomplete
|
||||||
#zsh-powerlevel10k
|
#zsh-powerlevel10k
|
||||||
|
@ -46,6 +47,12 @@
|
||||||
# '')
|
# '')
|
||||||
];
|
];
|
||||||
|
|
||||||
|
programs.direnv = {
|
||||||
|
enable = true;
|
||||||
|
#enableFishIntegration = true;
|
||||||
|
nix-direnv.enable = true;
|
||||||
|
};
|
||||||
|
|
||||||
programs.neovim = {
|
programs.neovim = {
|
||||||
viAlias = true;
|
viAlias = true;
|
||||||
vimAlias = true;
|
vimAlias = true;
|
||||||
|
@ -76,6 +83,9 @@
|
||||||
src = pkgs.fishPlugins.tide.src;
|
src = pkgs.fishPlugins.tide.src;
|
||||||
}
|
}
|
||||||
];
|
];
|
||||||
|
shellAliases = {
|
||||||
|
hm-update = "git add home.nix ; git commit -m 'updated home-manager config'; git push origin main; home-manager switch --flake ~/.dotfiles/#nmarks";
|
||||||
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
Loading…
Reference in a new issue