diff options
| author | ozpv <39195175+ozpv@users.noreply.github.com> | 2024-03-25 22:06:36 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-03-25 22:06:36 +0000 |
| commit | cdf380222440fdda6cc6739e8a925cbdbd7c12cb (patch) | |
| tree | c5fc3483ecedce671504dae0f2deabf2e082a435 /configuration.nix | |
| parent | 59d11e6f2bfc071150ec869afc2d5c24e81d55f4 (diff) | |
update
Diffstat (limited to 'configuration.nix')
| -rw-r--r-- | configuration.nix | 11 |
1 files changed, 10 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; |
