blob: a8f6def67fa6bc25d54ece368a2b3333934e8907 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
{ 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"
];
config.system.installer.channel.enable = false;
}
|