summaryrefslogtreecommitdiff
path: root/nixos/modules/boot.nix
blob: 344293fe01597fe46b2600fde9c81bdb617d35cf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{ config, lib, pkgs, ... }:

with lib;

{

  options = {

  };


  config = {
    rc.service.aggety = {
      description = "start agetty on a terminal line";
    };

  };

}