From 1f5a5272c449963a001c4719c7fd22dd8648530d Mon Sep 17 00:00:00 2001 From: k-ot Date: Sat, 22 Feb 2020 12:06:12 +0000 Subject: [PATCH] Pulsebert: disable getty on the ncmpcpp tty --- hosts/pulsebert/mpdConsole.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/hosts/pulsebert/mpdConsole.nix b/hosts/pulsebert/mpdConsole.nix index 933d2d2d..f584cd24 100644 --- a/hosts/pulsebert/mpdConsole.nix +++ b/hosts/pulsebert/mpdConsole.nix @@ -7,6 +7,7 @@ in { systemd.services.ncmpcpp = { description = "Mpd console"; wantedBy = [ "multi-user.target" ]; + conflicts = [ "getty@${tty}.service" ]; serviceConfig = { User = "k-ot"; ExecStart = "${pkgs.ncmpcpp}/bin/ncmpcpp";