mirror of
https://github.com/Ahwxorg/nixos-config.git
synced 2026-02-22 12:55:13 +08:00
18 lines
351 B
Nix
Executable file
18 lines
351 B
Nix
Executable file
{ pkgs, ... }:
|
|
{
|
|
home.packages = with pkgs; [
|
|
jankyborders
|
|
];
|
|
home.file.".config/borders/bordersrc" = {
|
|
executable = true;
|
|
text = ''
|
|
borders \
|
|
style=round \
|
|
width=8.0 \
|
|
hidpi=off \
|
|
active_color=0xc0e2e2e3 \
|
|
inactive_color=0xc02c2e34 \
|
|
background_color=0x302c2e34
|
|
'';
|
|
};
|
|
}
|