initial commit

This commit is contained in:
cswimr 2024-11-16 13:38:09 -05:00
commit 53dc0a539d
13 changed files with 701 additions and 0 deletions

12
nixos/nvim.nix Executable file
View file

@ -0,0 +1,12 @@
{ pkgs, ... }: {
# List packages installed in system profile. To search, run:
# $ nix search wget
environment.systemPackages = with pkgs; [ neovim ];
programs.neovim = {
enable = true;
defaultEditor = true;
viAlias = true;
vimAlias = true;
};
}