mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-01-31 16:57:55 +00:00
16 lines
266 B
Nix
16 lines
266 B
Nix
{ config, lib, ... }: {
|
|
programs.zed-editor = {
|
|
enable = true;
|
|
settings = {
|
|
autosave = "off";
|
|
confirm_quit = true;
|
|
};
|
|
};
|
|
|
|
test.stubs.zed-editor = { };
|
|
|
|
nmt.script = ''
|
|
assertFileExists home-files/.config/zed/settings.json
|
|
'';
|
|
}
|