Remove telegram autostart

This commit is contained in:
Andreas Zweili 2024-02-05 14:24:17 +01:00
parent 839fa37382
commit 293034ec4c
2 changed files with 1 additions and 8 deletions

View File

@ -12,9 +12,5 @@ in
programs.az-telegram.enable = lib.mkEnableOption "Enable Telegram.";
};
config = lib.mkIf cfg.enable {
home.packages = with pkgs; [ unstable.tdesktop ];
home.file.".config/qtile/autostart.d/telegram.sh".source = ./telegram.sh;
};
config = lib.mkIf cfg.enable { home.packages = with pkgs; [ unstable.tdesktop ]; };
}

View File

@ -1,3 +0,0 @@
#!/usr/bin/env bash
echo "start telegram"
nohup telegram-desktop > ~/.local/share/nohup.out &