14 lines
185 B
Nix
14 lines
185 B
Nix
|
{ pkgs, ... }:
|
||
|
{
|
||
|
programs = {
|
||
|
dconf.enable = true;
|
||
|
light.enable = true;
|
||
|
xwayland.enable = true;
|
||
|
};
|
||
|
|
||
|
services = {
|
||
|
dbus.enable = true;
|
||
|
tlp.enable = true;
|
||
|
};
|
||
|
}
|