12 lines
178 B
Nix
12 lines
178 B
Nix
{ config, pkgs, lib, ... }:
|
|
|
|
|
|
{
|
|
imports = [
|
|
./home-wl.nix
|
|
./x230-wl.nix
|
|
];
|
|
services.batsignal.enable = true;
|
|
services.batsignal.extraArgs = [ "-D poweroff" ];
|
|
}
|