remove some stale references to mobile-nixos

This commit is contained in:
colin 2023-01-02 10:00:20 +00:00
parent e225e2e704
commit 3c726f148b
2 changed files with 4 additions and 3 deletions

View File

@ -1,4 +1,4 @@
{ config, pkgs, lib, mobile-nixos, ... }:
{ config, pkgs, lib, ... }:
{
imports = [
./firmware.nix

View File

@ -1,4 +1,5 @@
{ config, lib, pkgs, mobile-nixos, utils, ... }:
{ config, lib, pkgs, utils, ... }:
# TODO: replace mobile-nixos parts with Disko <https://github.com/nix-community/disko>
with lib;
let
@ -9,7 +10,7 @@ in
sane.image.enable = mkOption {
default = true;
type = types.bool;
description = "whether to enable image targets. this doesn't mean they'll be built unless you specifically reference the target.";
description = "whether to enable image targets. even so they won't be built unless you specifically reference the `system.build.img` target.";
};
# packages whose contents should be copied directly into the /boot partition.
# e.g. EFI loaders, u-boot bootloader, etc.