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
|
@ -43,6 +43,7 @@
|
||||||
nixfmt
|
nixfmt
|
||||||
hurl
|
hurl
|
||||||
gh
|
gh
|
||||||
|
libnotify
|
||||||
|
|
||||||
firefox
|
firefox
|
||||||
discord
|
discord
|
||||||
|
@ -58,6 +59,7 @@
|
||||||
(prismlauncher.override { jdks = [ jdk22 jdk8 ]; })
|
(prismlauncher.override { jdks = [ jdk22 jdk8 ]; })
|
||||||
tidal-hifi
|
tidal-hifi
|
||||||
zotero
|
zotero
|
||||||
|
deadd-notification-center
|
||||||
|
|
||||||
emacs
|
emacs
|
||||||
alacritty
|
alacritty
|
||||||
|
|
|
@ -71,6 +71,18 @@
|
||||||
# Mouse
|
# Mouse
|
||||||
services.libinput.mouse = { middleEmulation = false; };
|
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 = {
|
users.users.priime = {
|
||||||
isNormalUser = true;
|
isNormalUser = true;
|
||||||
description = "Lucas";
|
description = "Lucas";
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue