NixOS/hosts/luna/modules/programs.nix

18 lines
232 B
Nix
Executable File

{ pkgs, ... }:
{
nixpkgs.config.allowUnfree = true;
programs = {
zsh.enable = true;
neovim = {
enable = true;
defaultEditor = true;
};
};
environment.systemPackages = with pkgs; [
"vim"
];
}