Files
2024-07-08 09:00:58 +00:00

10 lines
154 B
Nix

{ lib, pkgs, ... }:
{
imports = [
../.
];
# Fix laptop not properly powering off during shutdown.
boot.kernelParams = [ "apm=power_off" ];
}