aboutsummaryrefslogblamecommitdiff
path: root/profiles/server.nix
blob: 27498d645c7ee6771ff24e4eac8496eb8ab556be (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12




                           






                                                                      
 
{ pkgs, config, lib, ... }:
{
  imports = [
    ./default.nix
  ];

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