This commit is contained in:
Andreas Zweili 2021-11-25 23:10:39 +01:00
parent 6f4e2e6eb2
commit e80afa0de1
1 changed files with 40 additions and 1 deletions

View File

@ -16,7 +16,7 @@
# raw config files
home.file.".config/qtile".source = ./desktop/qtile;
home.file.".xprofile".source = ./desktop/xprofile;
# home.file.".xprofile".source = ./desktop/xprofile;
home.file.".config/terminator".source = ./desktop/terminator;
services.nextcloud-client = {
@ -26,4 +26,43 @@
services.network-manager-applet.enable = true;
systemd.user.services.telegram-desktop = {
description = "Telegram Desktop";
partOf = [ "graphical-session.target" ];
wantedBy = [ "graphical-session.target" ];
serviceConfig = {
Type = "simple";
ExecStart = "${pkgs.tdesktop}/bin/telegram-desktop";
ExecReload = "${pkgs.coreutils}/bin/kill -HUP $MAINPID";
KillMode = "process";
Restart = "on-failure";
};
};
#
# systemd.user.services.signal-desktop = {
# description = "Signal Desktop";
# partOf = [ "graphical-session.target" ];
# wantedBy = [ "graphical-session.target" ];
# serviceConfig = {
# Type = "simple";
# ExecStart = "${pkgs.signal-desktop}/bin/signal-desktop";
# ExecReload = "${pkgs.coreutils}/bin/kill -HUP $MAINPID";
# KillMode = "process";
# Restart = "on-failure";
# };
# };
#
# systemd.user.services.keeweb = {
# description = "Keeweb";
# partOf = [ "graphical-session.target" ];
# wantedBy = [ "graphical-session.target" ];
# serviceConfig = {
# Type = "simple";
# ExecStart = "${pkgs.keeweb}/bin/keeweb";
# ExecReload = "${pkgs.coreutils}/bin/kill -HUP $MAINPID";
# KillMode = "process";
# Restart = "on-failure";
# };
# };
}