mirror of
https://github.com/NixOS/nixos-hardware
synced 2024-11-23 03:19:42 +01:00
starfive/visionfive/v1: Make sd-image more flake-friendly
This commit is contained in:
parent
18934557ee
commit
6c2ae977a7
2 changed files with 8 additions and 6 deletions
|
@ -1,12 +1,14 @@
|
||||||
# To build, use:
|
# To build, use:
|
||||||
# nix-build "<nixpkgs/nixos>" -I nixos-config=starfive/visionfive/v1/sd-image-installer.nix -A config.system.build.sdImage
|
# nix-build "<nixpkgs/nixos>" -I nixos-config=starfive/visionfive/v1/sd-image-installer.nix -A config.system.build.sdImage
|
||||||
|
{ modulesPath, ... }:
|
||||||
|
|
||||||
{
|
{
|
||||||
imports = [
|
imports = [
|
||||||
<nixpkgs/nixos/modules/profiles/installation-device.nix>
|
"${modulesPath}/profiles/installation-device.nix"
|
||||||
./sd-image.nix
|
./sd-image.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
# the installation media is also the installation target,
|
# The installation media is also the installation target,
|
||||||
# so we don't want to provide the installation configuration.nix.
|
# so we don't want to provide the installation configuration.nix.
|
||||||
installer.cloneConfig = false;
|
installer.cloneConfig = false;
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,13 +1,13 @@
|
||||||
# To build, use:
|
# To build, use:
|
||||||
# nix-build "<nixpkgs}/nixos>" -I nixos-config=starfive/visionfive/v1/sd-image.nix -A config.system.build.sdImage
|
# nix-build "<nixpkgs/nixos>" -I nixos-config=starfive/visionfive/v1/sd-image.nix -A config.system.build.sdImage
|
||||||
{ config, pkgs, ... }:
|
{ config, pkgs, modulesPath, ... }:
|
||||||
|
|
||||||
let
|
let
|
||||||
firmware = pkgs.callPackage ./firmware.nix { };
|
firmware = pkgs.callPackage ./firmware.nix { };
|
||||||
in {
|
in {
|
||||||
imports = [
|
imports = [
|
||||||
<nixpkgs/nixos/modules/profiles/base.nix>
|
"${modulesPath}/profiles/base.nix"
|
||||||
<nixpkgs/nixos/modules/installer/sd-card/sd-image.nix>
|
"${modulesPath}/installer/sd-card/sd-image.nix"
|
||||||
./default.nix
|
./default.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue