refactoring
This commit is contained in:
parent
9313d89b15
commit
3adc5e9f73
40 changed files with 73 additions and 73 deletions
19
modules/mizukios/features/figma-agent.nix
Normal file
19
modules/mizukios/features/figma-agent.nix
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
{ pkgs, ... }: {
|
||||
systemd.user.services.figma-agent = {
|
||||
description = "Figma Agent for local font access";
|
||||
wantedBy = [ "default.target" ];
|
||||
serviceConfig = {
|
||||
ExecStart = "${pkgs.figma-agent}/bin/figma-agent";
|
||||
Restart = "on-failure";
|
||||
};
|
||||
};
|
||||
|
||||
systemd.user.sockets.figma-agent = {
|
||||
description = "Figma Agent socket";
|
||||
wantedBy = [ "default.target" ];
|
||||
socketConfig = {
|
||||
ListenStream = "127.0.0.1:44950";
|
||||
NoDelay = true;
|
||||
};
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue