feat(nix): add notification server
Signed-off-by: Lucas Sta Maria <lucas@priime.dev>
This commit is contained in:
parent
c287c37d37
commit
0296520db2
2 changed files with 14 additions and 0 deletions
|
@ -71,6 +71,18 @@
|
|||
# Mouse
|
||||
services.libinput.mouse = { middleEmulation = false; };
|
||||
|
||||
# Notification Server
|
||||
systemd.user.services.deadd-notification-center = {
|
||||
description = "deadd notification center";
|
||||
wantedBy = [ "graphical-session.target" ];
|
||||
partOf = [ "graphical-session.target" ];
|
||||
serviceConfig = {
|
||||
ExecStart = "${pkgs.deadd-notification-center}/bin/deadd-notification-center";
|
||||
Restart = "always";
|
||||
RestartSec = 3;
|
||||
};
|
||||
};
|
||||
|
||||
users.users.priime = {
|
||||
isNormalUser = true;
|
||||
description = "Lucas";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue