feat: added some exec stuff

This commit is contained in:
Nick 2025-01-11 18:53:08 -06:00
parent 569d969ecc
commit 42316e4a2a
84 changed files with 25 additions and 9 deletions

View file

@ -0,0 +1,18 @@
{
flake,
pkgs,
...
}: let
configPath = ./config;
settingsPath = import (configPath + /settings.nix) {
inherit
pkgs
;
};
in {
services.hypridle = {
enable = true;
package = flake.inputs.hypridle.packages.${pkgs.system}.hypridle;
settings = settingsPath;
};
}