diff options
| -rw-r--r-- | configuration.nix | 11 | ||||
| -rw-r--r-- | shells/dev.nix | 2 |
2 files changed, 12 insertions, 1 deletions
diff --git a/configuration.nix b/configuration.nix index 020e0ff..3c136a6 100644 --- a/configuration.nix +++ b/configuration.nix @@ -91,7 +91,6 @@ # $ nix search wget environment.systemPackages = with pkgs; [ vim - neovim (st.overrideAttrs { src = fetchGit { url = "https://github.com/ozpv/st.git"; @@ -121,6 +120,16 @@ home-manager ]; + programs.neovim = { + enable = true; + defaultEditor = true; + configure = { + customRC = '' + set nu + ''; + }; + }; + # gtk programs.dconf.enable = true; diff --git a/shells/dev.nix b/shells/dev.nix index 044375a..4f01653 100644 --- a/shells/dev.nix +++ b/shells/dev.nix @@ -16,5 +16,7 @@ pkgs.mkShell { cargo-generate tailwindcss binaryen + sqlite + sqlx-cli ]; } |
