diff options
author | notgne2 | 2021-01-14 13:21:29 -0700 |
---|---|---|
committer | notgne2 | 2021-01-14 13:21:29 -0700 |
commit | 0ca5d41aa6d6738b91f9b57c401cab306fbe2aee (patch) | |
tree | e6d99d8b33c8d77a2bf71a8488b1694841b8e097 /flake.nix | |
parent | 91f505401ef338a04da4a6e7256ea8b801a0a68a (diff) | |
parent | 8161b427c6faad61f38264266333a626c8c3ef47 (diff) |
Merge branch 'master' into notgne2/cleanup
Diffstat (limited to 'flake.nix')
-rw-r--r-- | flake.nix | 9 |
1 files changed, 8 insertions, 1 deletions
@@ -80,7 +80,14 @@ ]; }; - nixos = base: custom base.config.system.build.toplevel "$PROFILE/bin/switch-to-configuration switch"; + nixos = base: custom base.config.system.build.toplevel '' + $PROFILE/bin/switch-to-configuration switch + + # https://github.com/serokell/deploy-rs/issues/31 + ${with base.config.boot.loader; + pkgs.lib.optionalString systemd-boot.enable + "sed -i '/^default /d' ${efi.efiSysMountPoint}/loader/loader.conf"} + ''; noop = base: custom base ":"; }; |