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
|
chatterino7
|
||||||
telegram-desktop
|
telegram-desktop
|
||||||
localsend
|
localsend
|
||||||
deskflow
|
|
||||||
kdePackages.kalk
|
kdePackages.kalk
|
||||||
kdePackages.partitionmanager
|
kdePackages.partitionmanager
|
||||||
];
|
];
|
||||||
|
|||||||
@@ -2,6 +2,7 @@
|
|||||||
imports = [
|
imports = [
|
||||||
./audio.nix
|
./audio.nix
|
||||||
./desktop-apps.nix
|
./desktop-apps.nix
|
||||||
|
./deskflow.nix
|
||||||
./gaming.nix
|
./gaming.nix
|
||||||
./git.nix
|
./git.nix
|
||||||
./media.nix
|
./media.nix
|
||||||
|
|||||||
Reference in New Issue
Block a user