summaryrefslogtreecommitdiff
path: root/nix-home-config/dragon.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nix-home-config/dragon.nix')
-rw-r--r--nix-home-config/dragon.nix13
1 files changed, 13 insertions, 0 deletions
diff --git a/nix-home-config/dragon.nix b/nix-home-config/dragon.nix
new file mode 100644
index 0000000..3e8a4bb
--- /dev/null
+++ b/nix-home-config/dragon.nix
@@ -0,0 +1,13 @@
+{ config, pkgs, ... }:
+
+{
+ imports = [ ./weechat.nix ];
+ programs.home-manager.enable = true;
+ programs.neovim.enable = true;
+
+ home.stateVersion = "19.03";
+
+ home.sessionVariables = {
+ EDITOR = "nvim";
+ };
+}