13 lines
197 B
Nix
13 lines
197 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
{
|
|
imports =
|
|
[
|
|
./hardware-configuration.nix
|
|
../../modules/common.nix
|
|
];
|
|
|
|
networking.hostName = "Heracles";
|
|
services.power-profiles-daemon.enable = true;
|
|
}
|