2023-07-08 10:12:35 +02:00
|
|
|
{ pkgs, ... }:
|
|
|
|
|
|
|
|
{
|
|
|
|
programs.terminator = {
|
|
|
|
enable = true;
|
|
|
|
config = {
|
|
|
|
global_config.borderless = true;
|
|
|
|
profiles.default.background_color = "#002b36";
|
2021-06-17 17:06:47 +02:00
|
|
|
};
|
2023-07-08 10:12:35 +02:00
|
|
|
};
|
2021-06-17 17:06:47 +02:00
|
|
|
|
2023-07-08 10:12:35 +02:00
|
|
|
test.stubs.terminator = { };
|
2021-06-23 00:19:41 +02:00
|
|
|
|
2023-07-08 10:12:35 +02:00
|
|
|
nmt.script = ''
|
|
|
|
assertFileContent home-files/.config/terminator/config ${
|
|
|
|
pkgs.writeText "expected" ''
|
|
|
|
[global_config]
|
|
|
|
borderless = True
|
|
|
|
[profiles]
|
|
|
|
[[default]]
|
|
|
|
background_color = "#002b36"''
|
|
|
|
}
|
|
|
|
'';
|
2021-06-17 17:06:47 +02:00
|
|
|
}
|