25 lines
430 B
Nix
25 lines
430 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;
|
|
};
|
|
};
|
|
|
|
universe.programming.c.enable = false;
|
|
|
|
specialisation.graphical.configuration = {
|
|
modules.desktop.wm.enable = true;
|
|
};
|
|
}
|