22 lines
388 B
Nix
22 lines
388 B
Nix
{ pkgs, ... }: {
|
|
imports = [
|
|
./hardware-configuration.nix
|
|
./disks.nix
|
|
];
|
|
|
|
system.stateVersion = "24.11";
|
|
networking.hostId = "deadbeef";
|
|
|
|
boot.kernelPackages = pkgs.linuxPackages;
|
|
|
|
modules = {
|
|
hardware = {
|
|
audio.enable = true;
|
|
form.portable = true;
|
|
};
|
|
};
|
|
|
|
specialisation.graphical.configuration = {
|
|
modules.desktop.wm.enable = true;
|
|
};
|
|
}
|