From c0d6f12ae25368ae23f140bbb2bb938c2b11234f Mon Sep 17 00:00:00 2001 From: Natsu Kagami Date: Tue, 26 Oct 2021 15:10:10 -0400 Subject: [PATCH] Default to EDITOR=kak --- common.nix | 2 ++ darwin/configuration.nix | 8 ++++++-- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/common.nix b/common.nix index b883dfd..b582594 100644 --- a/common.nix +++ b/common.nix @@ -53,6 +53,8 @@ home.sessionVariables = { # Bat theme BAT_THEME = "GitHub"; + # Editor + EDITOR = "kak"; }; home.sessionPath = [ diff --git a/darwin/configuration.nix b/darwin/configuration.nix index 1963af4..1b5a4ae 100644 --- a/darwin/configuration.nix +++ b/darwin/configuration.nix @@ -4,8 +4,7 @@ # List packages installed in system profile. To search by name, run: # $ nix-env -qaP | grep wget environment.systemPackages = - [ pkgs.vim - ]; + [ ]; # Use a custom configuration.nix location. # $ darwin-rebuild switch -I darwin-config=$HOME/.config/nixpkgs/darwin/configuration.nix @@ -19,6 +18,11 @@ programs.zsh.enable = true; # default shell on catalina # programs.fish.enable = true; + ## Networking related settings + networking.hostName = "nki-macbook"; + + ## Programs + # Used for backwards compatibility, please read the changelog before changing. # $ darwin-rebuild changelog system.stateVersion = 4;