home manager: add deskflow module
This commit is contained in:
@@ -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" ];
|
||||
};
|
||||
};
|
||||
}
|
||||
@@ -9,7 +9,6 @@
|
||||
chatterino7
|
||||
telegram-desktop
|
||||
localsend
|
||||
deskflow
|
||||
kdePackages.kalk
|
||||
kdePackages.partitionmanager
|
||||
];
|
||||
|
||||
@@ -2,6 +2,7 @@
|
||||
imports = [
|
||||
./audio.nix
|
||||
./desktop-apps.nix
|
||||
./deskflow.nix
|
||||
./gaming.nix
|
||||
./git.nix
|
||||
./media.nix
|
||||
|
||||
Reference in New Issue
Block a user