blob: 37c5df21177c4fe76b8bc09b7962dd96dcb75e4a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
{ config, pkgs, ... }:
{
imports = [ ./weechat.nix ./my-env.nix ];
programs.home-manager.enable = true;
programs.neovim.enable = true;
home.stateVersion = "19.03";
home.sessionVariables = {
EDITOR = "nvim";
};
}
|