9 lines
147 B
Nix
9 lines
147 B
Nix
|
{ config, pkgs, lib, ... } :
|
||
|
{
|
||
|
imports= [
|
||
|
./configuration.nix
|
||
|
../../modules/outputs/ext4fs.nix
|
||
|
];
|
||
|
rootfsType = lib.mkForce "ext4";
|
||
|
}
|