d04e52b0c0
added configuration for terminator
23 lines
504 B
Nix
23 lines
504 B
Nix
{ config, lib, pkgs, ... }: {
|
|
config = {
|
|
programs.terminator = {
|
|
enable = true;
|
|
config = {
|
|
global_config.borderless = true;
|
|
profiles.default.background_color = "#002b36";
|
|
};
|
|
};
|
|
|
|
nmt.script = ''
|
|
assertFileContent home-files/.config/terminator/config ${
|
|
pkgs.writeText "expected" ''
|
|
[global_config]
|
|
borderless = True
|
|
[profiles]
|
|
[[default]]
|
|
background_color = "#002b36"''
|
|
}
|
|
'';
|
|
};
|
|
}
|