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" {} '' installFiles = pkgs.runCommand "install-files" {} ''
mkdir -p $out mkdir -p $out
cp -rv ${./initrd-include}/* $out/ cp -rv ${./initrd-include}/* $out/
mkdir /install
ln -s $out /install
''; '';
in in
{ {
@ -34,13 +32,13 @@ in
# "install".source = installFiles; # "install".source = installFiles;
# }; # };
#}; #};
environment.systemPackages = with pkgs; [ environment.systemPackages = [
vim # Do not forget to add an editor to edit configuration.nix! The Nano editor is also installed by default. pkgs.vim # Do not forget to add an editor to edit configuration.nix! The Nano editor is also installed by default.
wget pkgs.wget
disko pkgs.disko
coreutils-full pkgs.coreutils-full
nixos-install pkgs.nixos-install
nettools pkgs.nettools
installFiles installFiles
]; ];