remote vscode

This commit is contained in:
zuckerberg
2021-05-20 16:39:32 -04:00
parent 9e69bd9559
commit 2bd0fe5be4
8 changed files with 113 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
import ./module.nix ({ name, description, serviceConfig }:
{
systemd.user.services.${name} = {
Unit = {
Description = description;
};
Service = serviceConfig;
Install = {
WantedBy = [ "default.target" ];
};
};
})