mirror of
https://github.com/nix-community/home-manager
synced 2024-11-01 16:59:43 +01:00
e78cbb2027
Add a simple module for zed-editor, a simple editor written in Rust.
24 lines
545 B
Nix
24 lines
545 B
Nix
{ config, ... }:
|
|
|
|
{
|
|
programs.zed-editor = {
|
|
enable = true;
|
|
package = config.lib.test.mkStubPackage { };
|
|
extensions = [ "swift" "html" "xy-zed" ];
|
|
};
|
|
|
|
nmt.script = let
|
|
expectedContent = builtins.toFile "expected.json" ''
|
|
{
|
|
"auto_install_extensions": {
|
|
"html": true,
|
|
"swift": true,
|
|
"xy-zed": true
|
|
}
|
|
}
|
|
'';
|
|
in ''
|
|
assertFileExists "home-files/.config/zed/settings.json"
|
|
assertFileContent "home-files/.config/zed/settings.json" "${expectedContent}"
|
|
'';
|
|
}
|