mirror of
https://github.com/sadan4/dotfiles.git
synced 2025-06-07 13:03:03 -04:00
use nano as default to avoid conflicts with neovim
This commit is contained in:
parent
cd0ad842a7
commit
6eb143d198
3 changed files with 14 additions and 7 deletions
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue