26 lines
672 B
Nix
26 lines
672 B
Nix
{ pkgs, lib, config, ... }:
|
|
{
|
|
imports = [ ./hardware-configuration.nix ];
|
|
|
|
networking.hostName = "chrysanthemum";
|
|
networking.hostId = "6bb591ac";
|
|
|
|
system.stateVersion = "25.04";
|
|
environment.etc.machine-id.text = "d3d521900f0e11f0af2b9d9b219a1c36\n";
|
|
|
|
security.sudo.wheelNeedsPassword = false;
|
|
hardware.opengl.enable = true;
|
|
services.dbus.enable = true;
|
|
services.accounts-daemon.enable = true;
|
|
services.consolekit2.enable = true;
|
|
services.xserver = {
|
|
enable = true;
|
|
displayManager.lightdm.enable = true;
|
|
displayManager.defaultSession = "xfce";
|
|
desktopManager.xfce = {
|
|
enable = true;
|
|
};
|
|
exportConfiguration = true;
|
|
};
|
|
}
|