home manager: add deskflow module

This commit is contained in:
emmatherock
2026-06-19 23:12:56 -03:00
parent 1891aea4eb
commit 283624895b
3 changed files with 27 additions and 1 deletions
+26
View File
@@ -0,0 +1,26 @@
{ pkgs, ... }:
{
home.packages = with pkgs; [
deskflow
];
systemd.user.services.deskflow = {
Unit = {
Description = "Deskflow Client Daemon";
After = [ "graphical-session.target" ];
};
Service = {
Type = "simple";
Environment = "DISPLAY=:0";
ExecStart = "${pkgs.deskflow}/bin/deskflow-core client miku-homelab.ts.emmatherock.online";
Restart = "always";
RestartSec = 3;
};
Install = {
WantedBy = [ "graphical-session.target" ];
};
};
}
-1
View File
@@ -9,7 +9,6 @@
chatterino7
telegram-desktop
localsend
deskflow
kdePackages.kalk
kdePackages.partitionmanager
];
+1
View File
@@ -2,6 +2,7 @@
imports = [
./audio.nix
./desktop-apps.nix
./deskflow.nix
./gaming.nix
./git.nix
./media.nix