Gitiles
Code Review
Sign In
git.clicks.codes
/
Minion
/
NixFiles
/
21bc40151688e6792908d7185aecb81e384daeea
/
.
/
modules
/
acpi.nix
blob: fd20db37c1ee92fdddfbf03bfd64598661b9bc1b [
file
] [
log
] [
blame
]
{
pkgs
,
config
,
...
}:
{
config
=
{
environment
.
systemPackages
=
with
pkgs
;
[
acpi acpitool
];
services
.
acpid
.
enable
=
true
;
boot
.
extraModulePackages
=
with
config
.
boot
.
kernelPackages
;
[
acpi_call
];
};
}