mirror of
https://github.com/nix-community/home-manager
synced 2024-11-06 03:09:45 +01:00
25 lines
603 B
Nix
25 lines
603 B
Nix
{ config, lib, pkgs, ... }: {
|
|
config = {
|
|
programs.terminator = {
|
|
enable = true;
|
|
config = {
|
|
global_config.borderless = true;
|
|
profiles.default.background_color = "#002b36";
|
|
};
|
|
};
|
|
|
|
nixpkgs.overlays =
|
|
[ (self: super: { terminator = pkgs.writeScriptBin "dummy" ""; }) ];
|
|
|
|
nmt.script = ''
|
|
assertFileContent home-files/.config/terminator/config ${
|
|
pkgs.writeText "expected" ''
|
|
[global_config]
|
|
borderless = True
|
|
[profiles]
|
|
[[default]]
|
|
background_color = "#002b36"''
|
|
}
|
|
'';
|
|
};
|
|
}
|