15 lines
198 B
Nix

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