diff options
author | Baitinq <manuelpalenzuelamerino@gmail.com> | 2022-06-17 20:56:30 +0200 |
---|---|---|
committer | Baitinq <manuelpalenzuelamerino@gmail.com> | 2022-06-17 20:56:30 +0200 |
commit | eabe31af7eb1c785e3867ad6687e4c203674787e (patch) | |
tree | da7e75bff683de247c3b5d052b6d78418b297d3f /hosts/configuration.nix | |
parent | Initial commit (diff) | |
download | nixos-config-eabe31af7eb1c785e3867ad6687e4c203674787e.tar.gz nixos-config-eabe31af7eb1c785e3867ad6687e4c203674787e.tar.bz2 nixos-config-eabe31af7eb1c785e3867ad6687e4c203674787e.zip |
Refractor and move neovim to be a system pkg
Diffstat (limited to 'hosts/configuration.nix')
-rw-r--r-- | hosts/configuration.nix | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/hosts/configuration.nix b/hosts/configuration.nix index 4b85fda..738867d 100644 --- a/hosts/configuration.nix +++ b/hosts/configuration.nix @@ -42,8 +42,6 @@ extraGroups = [ "wheel" "audio" "video" ]; # Enable ‘sudo’ for the user. }; - #nixpkgs.config.allowUnfree = true; - environment.variables = { TERMINAL = "st"; EDITOR = "nvim"; @@ -70,14 +68,15 @@ pciutils gnupg git-crypt + neovim ]; - programs.neovim = { + /*programs.neovim = { enable = true; viAlias = true; vimAlias = true; - # plugins = with pkgs.vimPlugins; [vim-addon-nix youcompleteme]; - }; + plugins = with pkgs.vimPlugins; [vim-addon-nix youcompleteme]; + };*/ # Some programs need SUID wrappers, can be configured further or are # started in user sessions. |