added helix config to home manager

This commit is contained in:
specCon18 2023-03-30 02:00:53 -04:00
parent fe291a56ab
commit 17b548d7d5
2 changed files with 8 additions and 1 deletions

View file

@ -28,7 +28,6 @@
cargo cargo
dconf2nix dconf2nix
rustc rustc
helix
bat bat
exa exa
uutils-coreutils uutils-coreutils

View file

@ -5,6 +5,7 @@
homeDirectory = "/home/speccon18"; homeDirectory = "/home/speccon18";
stateVersion = "22.11"; stateVersion = "22.11";
packages = with pkgs; [ packages = with pkgs; [
w3m
nushell nushell
bitwarden bitwarden
firefox firefox
@ -176,6 +177,13 @@
"window.zoomLevel" = 1; "window.zoomLevel" = 1;
}; };
}; };
helix = {
enable = true;
settings = {
editor.line-number = "relative";
editor.shell = ["zsh" "-c"];
};
};
git = { git = {
enable = true; enable = true;
userName = "specCon18"; userName = "specCon18";