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;