use nano as default to avoid conflicts with neovim

This commit is contained in:
sadan 2025-04-09 00:30:24 -04:00
parent cd0ad842a7
commit 6eb143d198
No known key found for this signature in database
3 changed files with 14 additions and 7 deletions

View file

@ -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

View file

@ -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

View file

@ -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