nixos/home-manager/software/telegram/default.nix

10 lines
155 B
Nix

{ pkgs, ... }:
{
home.packages = with pkgs; [
unstable.tdesktop
];
home.file.".config/qtile/autostart.d/telegram.sh".source = ./telegram.sh;
}