9 lines
111 B
Nix
9 lines
111 B
Nix
{ pkgs, ... }:
|
|
{
|
|
myConfig.wayland.enable = true;
|
|
home.packages = with pkgs; [
|
|
powertop
|
|
acpi
|
|
];
|
|
}
|