try again

This commit is contained in:
Richard Mauer 2024-12-29 23:10:24 -05:00
parent 846979defc
commit 8f2c90a134

View File

@ -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
];