mirror of
https://github.com/nix-community/home-manager
synced 2024-11-01 08:49:44 +01:00
65bcfaccc5
This adds initial bare-bones support for the `micro` editor.
24 lines
380 B
Nix
24 lines
380 B
Nix
{ ... }:
|
|
|
|
{
|
|
programs.micro = {
|
|
enable = true;
|
|
|
|
settings = {
|
|
autosu = false;
|
|
cursorline = false;
|
|
};
|
|
};
|
|
|
|
test.stubs.micro = { };
|
|
|
|
nmt.script = ''
|
|
assertFileContent home-files/.config/micro/settings.json \
|
|
${builtins.toFile "micro-expected-settings.json" ''
|
|
{
|
|
"autosu": false,
|
|
"cursorline": false
|
|
}
|
|
''}
|
|
'';
|
|
}
|