diff --git a/nix/os/devices/steveej-laptop/configuration.nix b/nix/os/devices/steveej-laptop/configuration.nix index c0d100e..da100b3 100644 --- a/nix/os/devices/steveej-laptop/configuration.nix +++ b/nix/os/devices/steveej-laptop/configuration.nix @@ -1,11 +1,6 @@ { ... }: { - nixpkgs.config = { - allowBroken = false; - allowUnfree = true; - }; - imports = [ ../../profiles/common/configuration.nix ../../profiles/graphical/configuration.nix diff --git a/nix/os/profiles/common/system.nix b/nix/os/profiles/common/system.nix index b6fc3ef..d7a596f 100644 --- a/nix/os/profiles/common/system.nix +++ b/nix/os/profiles/common/system.nix @@ -48,6 +48,7 @@ # Activation scripts for impure set up of paths in / system.activationScripts.bin = '' echo "setting up /bin..." + mkdir -p /bin ln -sfT ${pkgs.bash}/bin/bash /bin/.bash mv -Tf /bin/.bash /bin/bash '';