16 lines
261 B
Nix
16 lines
261 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
{
|
|
config.services = {
|
|
upower.enable = true;
|
|
|
|
xserver = {
|
|
windowManager.xmonad = {
|
|
enable = true;
|
|
enableContribAndExtras = true;
|
|
};
|
|
};
|
|
};
|
|
|
|
config.systemd.services.upower.enable = true;
|
|
}
|