22 lines
450 B
Nix
22 lines
450 B
Nix
{ lib, config, ... }: {
|
|
imports = [
|
|
./hardware-configuration.nix
|
|
./filesystems.nix
|
|
];
|
|
|
|
system.stateVersion = "24.11";
|
|
networking.hostId = "06a3f197";
|
|
|
|
boot.kernelPackages = lib.mkForce config.boot.zfs.package.latestCompatibleLinuxPackages;
|
|
|
|
modules = {
|
|
hardware = {
|
|
audio.enable = true;
|
|
form.portable = true;
|
|
};
|
|
};
|
|
|
|
specialisation."Graphical".configuration = {
|
|
modules.desktop.wm.enable = true;
|
|
};
|
|
}
|