summaryrefslogtreecommitdiff
path: root/installer-profiles/nfsroot.nix
blob: 6bd875b4d8515247559f8715a845dc285622f447 (plain)
1
2
3
4
5
6
7
8
9
10
11
{ flakeInputs, flake, ... }:

{
  imports = with flake.nixosModules.systemProfiles; [
    nfsroot
    "${flakeInputs.nixpkgs.outPath}/nixos/modules/profiles/minimal.nix"
    "${flakeInputs.nixpkgs.outPath}/nixos/modules/profiles/all-hardware.nix"
    "${flakeInputs.nixpkgs.outPath}/nixos/modules/profiles/base.nix"
    "${flakeInputs.nixpkgs.outPath}/nixos/modules/profiles/installation-device.nix"
  ];
}