mirror of
https://codeberg.org/geekygays/nixconf.git
synced 2024-11-04 15:47:49 +00:00
Fixes a few services.
This commit is contained in:
parent
2c857890f0
commit
b7ec5f6ab5
1 changed files with 3 additions and 2 deletions
|
@ -1,6 +1,7 @@
|
|||
{
|
||||
config,
|
||||
pkgs,
|
||||
lib,
|
||||
...
|
||||
}:
|
||||
|
||||
|
@ -23,6 +24,7 @@
|
|||
|
||||
security.sudo.wheelNeedsPassword = false; # Needed for colmena.
|
||||
documentation.man.enable = false; # Takes way too long to build.
|
||||
services.nebula.networks.bbs.enable = lib.mkForce false;
|
||||
|
||||
environment.systemPackages = with pkgs; [
|
||||
zellij tmux minicom tio lrzsz python3Packages.pyserial btop
|
||||
|
@ -40,8 +42,7 @@
|
|||
after = [ "network.target" ];
|
||||
|
||||
script = ''
|
||||
${pkgs.tmux}/bin/tmux new -d \
|
||||
${pkgs.python3Packages.pyserial}/bin/pyserial-miniterm /dev/ttyS1 115200 --eol lf --raw
|
||||
${pkgs.tmux}/bin/tmux new -d ${pkgs.python3Packages.pyserial}/bin/pyserial-miniterm /dev/ttyS1 115200 --eol lf --raw
|
||||
'';
|
||||
|
||||
serviceConfig = {
|
||||
|
|
Loading…
Reference in a new issue