about summary refs log tree commit diff
path: root/profiles/server.nix
blob: 5a95dfff74b3354b5309e457c730f851fe6a2bed (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{ pkgs, config, lib, ... }:
{
  imports = [
    ./default.nix
  ];

  powerManagement.cpuFreqGovernor = "schedutil";

  console = {
    earlySetup = true;
    font = "${pkgs.terminus_font}/share/consolefonts/ter-132n.psf.gz";
    packages = with pkgs; [ terminus_font ];
    keyMap = "us";
  };
}