mirror of
https://github.com/tomasriveral/nixos.git
synced 2026-08-11 18:18:37 +02:00
15 lines
406 B
Nix
15 lines
406 B
Nix
_: {
|
|
perSystem = {pkgs, ...}: {
|
|
packages.custom-bottom = pkgs.writeShellApplication {
|
|
name = "custom-bottom";
|
|
runtimeInputs = with pkgs; [
|
|
kitty
|
|
bottom
|
|
];
|
|
text = ''
|
|
kitty --class "custom-bottom" -o font_size=10 --name "custom-bottom" -e btm --theme gruvbox --disable-click --disable_advanced_kill --enable_cache_memory -g -R -T
|
|
'';
|
|
};
|
|
};
|
|
}
|