From 6eb143d198639a158cbf5446bf7c7ebbbcc6dec2 Mon Sep 17 00:00:00 2001 From: sadan <117494111+sadan4@users.noreply.github.com> Date: Wed, 9 Apr 2025 00:30:24 -0400 Subject: [PATCH] use nano as default to avoid conflicts with neovim --- boxes/desktop/configuration.nix | 2 +- boxes/serverpc/configuration.nix | 2 +- boxes/wsl/configuration.nix | 17 ++++++++++++----- 3 files changed, 14 insertions(+), 7 deletions(-) diff --git a/boxes/desktop/configuration.nix b/boxes/desktop/configuration.nix index ed89321..3ee4711 100644 --- a/boxes/desktop/configuration.nix +++ b/boxes/desktop/configuration.nix @@ -61,7 +61,7 @@ fuse ifuse unstable.gcc - neovim # Do not forget to add an editor to edit configuration.nix! The Nano editor is also installed by default. + nano curl wget ripgrep diff --git a/boxes/serverpc/configuration.nix b/boxes/serverpc/configuration.nix index 543c1eb..7ad08d1 100644 --- a/boxes/serverpc/configuration.nix +++ b/boxes/serverpc/configuration.nix @@ -35,7 +35,7 @@ programs.zsh.enable = true; environment.systemPackages = with pkgs; [ - neovim # Do not forget to add an editor to edit configuration.nix! The Nano editor is also installed by default. + nano curl wget ripgrep diff --git a/boxes/wsl/configuration.nix b/boxes/wsl/configuration.nix index 2449f4d..9a1005d 100644 --- a/boxes/wsl/configuration.nix +++ b/boxes/wsl/configuration.nix @@ -3,7 +3,13 @@ # https://search.nixos.org/options and in the NixOS manual (`nixos-help`). # { config, lib, pkgs, inputs, ... }: -{ config, lib, pkgs, inputs, ... }: +{ + config, + lib, + pkgs, + inputs, + ... +}: { imports = [ @@ -19,19 +25,20 @@ networking.hostName = "arm-laptop-evo4b5"; # Define your hostname. nixpkgs.config.allowUnfree = true; - nix.settings.experimental-features = [ "nix-command" "flakes" ]; + nix.settings.experimental-features = [ + "nix-command" + "flakes" + ]; # Set your time zone. time.timeZone = "America/New_York"; programs.zsh.enable = true; - - environment.systemPackages = with pkgs; [ ddcutil i2c-tools fuse - neovim # Do not forget to add an editor to edit configuration.nix! The Nano editor is also installed by default. + nano curl wget ripgrep