remove nano from installation

This commit is contained in:
RealStickman 2023-05-01 12:49:53 +02:00
parent d37f9c5854
commit 9c6b76f356
4 changed files with 5 additions and 5 deletions

View File

@ -35,6 +35,8 @@ in
EDITOR = "nvim"; EDITOR = "nvim";
VISUAL = "nvim"; VISUAL = "nvim";
}; };
# remove nano from default packages
defaultPackages = [ pkgs.perl pkgs.rsync pkgs.strace ];
}; };
networking.hostName = "${hostname}"; # Define your hostname. networking.hostName = "${hostname}"; # Define your hostname.

View File

@ -47,7 +47,7 @@ in
libnotify # notifications libnotify # notifications
mako # notification daemon mako # notification daemon
xdg-desktop-portal-hyprland # desktop portal (hyprland fork) xdg-desktop-portal-hyprland # desktop portal (hyprland fork)
neovim # text editor #neovim # text editor
yt-dlp # video downloader yt-dlp # video downloader
]; ];

View File

@ -33,6 +33,3 @@ set fish_color_cwd yellow
# SSH Agent # SSH Agent
set SSH_AUTH_SOCK "$XDG_RUNTIME_DIR/ssh-agent.socket" set SSH_AUTH_SOCK "$XDG_RUNTIME_DIR/ssh-agent.socket"
export SSH_AUTH_SOCK export SSH_AUTH_SOCK
# text editor
#set EDITOR nvim
#set VISUAL nvim

View File

@ -4,7 +4,8 @@
# List packages installed in system profile. To search, run: # List packages installed in system profile. To search, run:
# $ nix search wget # $ nix search wget
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [
vim # an editor #vim # an editor
neovim # text editor
fwupd # firmware updates fwupd # firmware updates
fwupd-efi # firmware updates additional EFI stuff fwupd-efi # firmware updates additional EFI stuff
wget # get stuff from the net wget # get stuff from the net