diff options
author | Karel Kočí <cynerd@email.cz> | 2022-04-09 16:23:35 +0200 |
---|---|---|
committer | Karel Kočí <cynerd@email.cz> | 2022-04-09 16:23:35 +0200 |
commit | 4c0a4740a76ce61b419d51336073764284118aaf (patch) | |
tree | 24f3f50a36cc66f37e849f47bdab3f0ab1852c97 /nixos/modules/boot.nix | |
parent | 6a039e268369f7e9055e19d733849da26ab0208b (diff) | |
download | nix-openrc-4c0a4740a76ce61b419d51336073764284118aaf.tar.gz nix-openrc-4c0a4740a76ce61b419d51336073764284118aaf.tar.bz2 nix-openrc-4c0a4740a76ce61b419d51336073764284118aaf.zip |
Diffstat (limited to 'nixos/modules/boot.nix')
-rw-r--r-- | nixos/modules/boot.nix | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/nixos/modules/boot.nix b/nixos/modules/boot.nix new file mode 100644 index 0000000..344293f --- /dev/null +++ b/nixos/modules/boot.nix @@ -0,0 +1,19 @@ +{ config, lib, pkgs, ... }: + +with lib; + +{ + + options = { + + }; + + + config = { + rc.service.aggety = { + description = "start agetty on a terminal line"; + }; + + }; + +} |