27 lines
429 B
Nix
27 lines
429 B
Nix
{ lib, config, ... }: {
|
|
imports = [
|
|
./hardware-configuration.nix
|
|
./filesystems.nix
|
|
];
|
|
|
|
networking.hostId = "06a3f197";
|
|
|
|
boot.kernelPackages = lib.mkForce config.boot.zfs.package.latestCompatibleLinuxPackages;
|
|
|
|
modules = {
|
|
hardware = {
|
|
audio.enable = true;
|
|
form.portable = true;
|
|
};
|
|
};
|
|
|
|
persist = {
|
|
directories = [
|
|
];
|
|
|
|
files = [
|
|
];
|
|
};
|
|
|
|
system.stateVersion = "23.11";
|
|
}
|