1
0
Fork 0

fix(nix): change notification service

This commit is contained in:
Lucas Sta Maria 2025-08-17 13:47:55 +00:00
parent 1d1804f3fc
commit d0dc106ccb
Signed by: lucas
GPG key ID: F07FB16A826E3B47
3 changed files with 40 additions and 20 deletions

View file

@ -1,5 +1,5 @@
{ inputs, config, pkgs, lib, ... }: {
imports = [ ./hw.nix ];
imports = [ ./hw.nix ../../modules/swaynotificationcenter.nix ];
networking.hostName = "framework";
time.timeZone = "America/New_York";
@ -103,19 +103,6 @@
# 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;
};
};
virtualisation.docker.enable = true;
users.users.priime = {
@ -152,6 +139,8 @@
programs.niri.enable = true;
programs.xwayland.enable = true;
services.swaynotificationcenter.enable = true;
services.tailscale = {
enable = true;
useRoutingFeatures = "client";