mirror of
https://github.com/nix-community/home-manager
synced 2024-11-01 08:49:44 +01:00
24 lines
472 B
Nix
24 lines
472 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
programs.terminator = {
|
|
enable = true;
|
|
config = {
|
|
global_config.borderless = true;
|
|
profiles.default.background_color = "#002b36";
|
|
};
|
|
};
|
|
|
|
test.stubs.terminator = { };
|
|
|
|
nmt.script = ''
|
|
assertFileContent home-files/.config/terminator/config ${
|
|
pkgs.writeText "expected" ''
|
|
[global_config]
|
|
borderless = True
|
|
[profiles]
|
|
[[default]]
|
|
background_color = "#002b36"''
|
|
}
|
|
'';
|
|
}
|