mirror of
https://github.com/sadan4/dotfiles.git
synced 2025-06-07 21:13: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
|
fuse
|
||||||
ifuse
|
ifuse
|
||||||
unstable.gcc
|
unstable.gcc
|
||||||
neovim # Do not forget to add an editor to edit configuration.nix! The Nano editor is also installed by default.
|
nano
|
||||||
curl
|
curl
|
||||||
wget
|
wget
|
||||||
ripgrep
|
ripgrep
|
||||||
|
|
|
@ -35,7 +35,7 @@
|
||||||
programs.zsh.enable = true;
|
programs.zsh.enable = true;
|
||||||
|
|
||||||
environment.systemPackages = with pkgs; [
|
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
|
curl
|
||||||
wget
|
wget
|
||||||
ripgrep
|
ripgrep
|
||||||
|
|
|
@ -3,7 +3,13 @@
|
||||||
# https://search.nixos.org/options and in the NixOS manual (`nixos-help`).
|
# https://search.nixos.org/options and in the NixOS manual (`nixos-help`).
|
||||||
|
|
||||||
# { config, lib, pkgs, inputs, ... }:
|
# { config, lib, pkgs, inputs, ... }:
|
||||||
{ config, lib, pkgs, inputs, ... }:
|
{
|
||||||
|
config,
|
||||||
|
lib,
|
||||||
|
pkgs,
|
||||||
|
inputs,
|
||||||
|
...
|
||||||
|
}:
|
||||||
|
|
||||||
{
|
{
|
||||||
imports = [
|
imports = [
|
||||||
|
@ -19,19 +25,20 @@
|
||||||
networking.hostName = "arm-laptop-evo4b5"; # Define your hostname.
|
networking.hostName = "arm-laptop-evo4b5"; # Define your hostname.
|
||||||
|
|
||||||
nixpkgs.config.allowUnfree = true;
|
nixpkgs.config.allowUnfree = true;
|
||||||
nix.settings.experimental-features = [ "nix-command" "flakes" ];
|
nix.settings.experimental-features = [
|
||||||
|
"nix-command"
|
||||||
|
"flakes"
|
||||||
|
];
|
||||||
# Set your time zone.
|
# Set your time zone.
|
||||||
time.timeZone = "America/New_York";
|
time.timeZone = "America/New_York";
|
||||||
|
|
||||||
programs.zsh.enable = true;
|
programs.zsh.enable = true;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
environment.systemPackages = with pkgs; [
|
environment.systemPackages = with pkgs; [
|
||||||
ddcutil
|
ddcutil
|
||||||
i2c-tools
|
i2c-tools
|
||||||
fuse
|
fuse
|
||||||
neovim # Do not forget to add an editor to edit configuration.nix! The Nano editor is also installed by default.
|
nano
|
||||||
curl
|
curl
|
||||||
wget
|
wget
|
||||||
ripgrep
|
ripgrep
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue