mirror of
https://github.com/nix-community/home-manager.git
synced 2025-03-10 18:57:22 +00:00
21 lines
460 B
Nix
21 lines
460 B
Nix
|
{ config, ... }:
|
||
|
|
||
|
{
|
||
|
programs.zed-editor = {
|
||
|
enable = true;
|
||
|
package = config.lib.test.mkStubPackage { version = "57"; } // {
|
||
|
remote_server = config.lib.test.mkStubPackage {
|
||
|
buildScript = ''
|
||
|
mkdir -p $out/bin
|
||
|
touch $out/bin/zed-remote-server-stable-57
|
||
|
'';
|
||
|
};
|
||
|
};
|
||
|
installRemoteServer = true;
|
||
|
};
|
||
|
|
||
|
nmt.script = ''
|
||
|
assertFileExists "home-files/.zed_server/zed-remote-server-stable-57"
|
||
|
'';
|
||
|
}
|