mirror of
https://github.com/nix-community/home-manager
synced 2025-01-13 04:29:49 +01:00
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"''
|
||
|
}
|
||
|
'';
|
||
|
};
|
||
|
}
|