mirror of
https://github.com/nix-community/home-manager.git
synced 2025-11-08 19:46:05 +01:00
31 lines
634 B
Nix
31 lines
634 B
Nix
{ config, ... }:
|
|
|
|
{
|
|
programs.zed-editor = {
|
|
enable = true;
|
|
package = config.lib.test.mkStubPackage { };
|
|
mutableUserSettings = false;
|
|
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}"
|
|
'';
|
|
}
|