feat: beepy

This commit is contained in:
Kat Inskip 2025-08-07 15:03:41 -06:00
parent 61143478c8
commit 65c0a042b5
Signed by: kat
GPG key ID: 465E64DECEA8CF0F
2 changed files with 11 additions and 2 deletions

View file

@ -1,6 +1,6 @@
{pkgs, ...}: { {pkgs, ...}: {
services.solaar = { services.solaar = {
enable = truem enable = true;
window = "hide"; window = "hide";
package = pkgs.solaar; package = pkgs.solaar;
batteryIcons = "regular"; batteryIcons = "regular";

View file

@ -1,4 +1,5 @@
_: let { lib, pkgs, ... }: let
inherit (lib.modules) mkForce;
hostConfig = { hostConfig = {
tree, tree,
modulesPath, modulesPath,
@ -21,6 +22,14 @@ _: let
web web
]); ]);
home-manager.sharedModules = [
{
programs.niri = {
package = pkgs.niri;
};
}
];
system.stateVersion = "23.11"; system.stateVersion = "23.11";
}; };
in { in {