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