2025-11-20 22:20:16 -05:00

15 lines
199 B
Nix

{ pkgs, ... }:
{
home.packages = with pkgs; [
zsh
bluez
brightnessctl
(callPackage ./power_bat.nix { })
];
programs.eww = {
enable = true;
configDir = ./config;
};
}