nix-conf/hosts/yuzu/users/ahnwuoa/default.nix

21 lines
397 B
Nix
Raw Normal View History

2024-10-31 16:15:52 -04:00
{
config,
pkgs,
...
}: {
2024-10-27 19:02:26 -04:00
imports = [
../../../../user
];
home.username = "ahnwuoa";
2024-10-31 16:15:52 -04:00
home.packages = [pkgs.acpi];
u.tmux = {
plugins = [pkgs.tmuxPlugins.battery];
extraConfig = ''
set -g status-right "#{client_user}@#H | #{battery_percentage} #{battery_remain} | %a %b %d, %H:%M"
set -g status-right-length 60
set -g status-interval 15
'';
};
2024-10-27 19:02:26 -04:00
}