2eafb8192e
GitOrigin-RevId: 176e455371a8371586e8a3ff0d56ee9f3ca2324e
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
|
|
}
|
|
''}
|
|
'';
|
|
}
|