From 6e514ab503254ab2fd64cc942b72fc526b656d06 Mon Sep 17 00:00:00 2001 From: Alex Davies Date: Sat, 11 May 2024 16:19:50 -0300 Subject: [PATCH] Added some base packages --- nixos/configuration.nix | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/nixos/configuration.nix b/nixos/configuration.nix index c2025c6..5ccd3b3 100644 --- a/nixos/configuration.nix +++ b/nixos/configuration.nix @@ -67,6 +67,17 @@ auto-optimise-store = true; }; + environment.systemPackages = with pkgs; [ + # vim # Do not forget to add an editor to edit configuration.nix! The Nano editor is also installed by default. + # wget + pkgs.neovim + pkgs.mosh + pkgs.git + pkgs.usbutils + pkgs.pciutils + ]; + + boot.loader.systemd-boot.enable = true; boot.loader.efi.canTouchEfiVariables = true;