From 9c6b76f356dfa338257115043329c9322aec560f Mon Sep 17 00:00:00 2001 From: RealStickman Date: Mon, 1 May 2023 12:49:53 +0200 Subject: [PATCH] remove nano from installation --- configuration.nix | 2 ++ home-manager.nix | 2 +- home-manager/config/fish/conf.d/interactive.fish | 3 --- system-packages.nix | 3 ++- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/configuration.nix b/configuration.nix index 5dd6bc8..39943bb 100644 --- a/configuration.nix +++ b/configuration.nix @@ -35,6 +35,8 @@ in EDITOR = "nvim"; VISUAL = "nvim"; }; + # remove nano from default packages + defaultPackages = [ pkgs.perl pkgs.rsync pkgs.strace ]; }; networking.hostName = "${hostname}"; # Define your hostname. diff --git a/home-manager.nix b/home-manager.nix index aa3532e..9277159 100644 --- a/home-manager.nix +++ b/home-manager.nix @@ -47,7 +47,7 @@ in libnotify # notifications mako # notification daemon xdg-desktop-portal-hyprland # desktop portal (hyprland fork) - neovim # text editor + #neovim # text editor yt-dlp # video downloader ]; diff --git a/home-manager/config/fish/conf.d/interactive.fish b/home-manager/config/fish/conf.d/interactive.fish index 14ec347..f5a0c28 100644 --- a/home-manager/config/fish/conf.d/interactive.fish +++ b/home-manager/config/fish/conf.d/interactive.fish @@ -33,6 +33,3 @@ set fish_color_cwd yellow # SSH Agent set SSH_AUTH_SOCK "$XDG_RUNTIME_DIR/ssh-agent.socket" export SSH_AUTH_SOCK -# text editor -#set EDITOR nvim -#set VISUAL nvim diff --git a/system-packages.nix b/system-packages.nix index 1e9741f..42ee12e 100644 --- a/system-packages.nix +++ b/system-packages.nix @@ -4,7 +4,8 @@ # List packages installed in system profile. To search, run: # $ nix search wget environment.systemPackages = with pkgs; [ - vim # an editor + #vim # an editor + neovim # text editor fwupd # firmware updates fwupd-efi # firmware updates additional EFI stuff wget # get stuff from the net