cleanup
This commit is contained in:
parent
4aaf6b9d99
commit
5ef5281dc1
15 changed files with 31 additions and 45 deletions
|
|
@ -1,7 +1,4 @@
|
|||
{
|
||||
pkgs,
|
||||
...
|
||||
}: {
|
||||
{pkgs, ...}: {
|
||||
# Bootloader
|
||||
boot.loader.systemd-boot.enable = true;
|
||||
boot.loader.efi.canTouchEfiVariables = true;
|
||||
|
|
@ -13,9 +10,13 @@
|
|||
deps = [];
|
||||
text = ''
|
||||
mkdir -p /bin
|
||||
ln -sf ${pkgs.bash}/bin/bash /bin/bash
|
||||
if [ ! -e /bin/bash ]; then
|
||||
ln -sf ${pkgs.bash}/bin/bash /bin/bash
|
||||
fi
|
||||
mkdir -p /usr/bin
|
||||
ln -sf ${pkgs.coreutils}/bin/env /usr/bin/env
|
||||
if [ ! -e /usr/bin/env ]; then
|
||||
ln -sf ${pkgs.coreutils}/bin/env /usr/bin/env
|
||||
fi
|
||||
'';
|
||||
};
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue