universe/hosts/Infini-OPTIPLEX/default.nix

27 lines
360 B
Nix

{ ... }:
{
imports = [
./hardware-configuration.nix
./filesystems.nix
];
system.stateVersion = "23.05";
info.loc.purdue = true;
modules = {
hardware.form.desktop = true;
hardware.gpu.intel = true;
desktop.wm.enable = true;
};
boot.loader.timeout = 1;
persist = {
directories = [
];
files = [
];
};
}