From 8f2c90a134d37e3993eb662c94149ca972fdd4f3 Mon Sep 17 00:00:00 2001 From: Richard Mauer Date: Sun, 29 Dec 2024 23:10:24 -0500 Subject: [PATCH] try again --- config/base.nix | 16 +++++++--------- 1 file changed, 7 insertions(+), 9 deletions(-) diff --git a/config/base.nix b/config/base.nix index f7af5c6..6a8f2e0 100644 --- a/config/base.nix +++ b/config/base.nix @@ -7,8 +7,6 @@ let installFiles = pkgs.runCommand "install-files" {} '' mkdir -p $out cp -rv ${./initrd-include}/* $out/ - mkdir /install - ln -s $out /install ''; in { @@ -34,13 +32,13 @@ in # "install".source = installFiles; # }; #}; - 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 - disko - coreutils-full - nixos-install - nettools + environment.systemPackages = [ + pkgs.vim # Do not forget to add an editor to edit configuration.nix! The Nano editor is also installed by default. + pkgs.wget + pkgs.disko + pkgs.coreutils-full + pkgs.nixos-install + pkgs.nettools installFiles ];