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