config/modules/home-manager/zack.nix

31 lines
564 B
Nix
Raw Normal View History

{
inputs,
pkgs,
2024-05-03 13:33:06 -04:00
lib,
...
}: {
imports = [./default.nix ./applications.nix];
2024-05-03 13:33:06 -04:00
services = {
udiskie.enable = true;
gpg-agent = {
enable = true;
pinentryPackage = lib.mkForce pkgs.pinentry-gnome3;
enableSshSupport = true;
enableZshIntegration = true;
};
};
systemd.user.services.kb-gui = {
Unit = {
Description = "KB Time/Date thing";
};
Install = {
WantedBy = ["default.target"];
};
Service = {
ExecStart = "${inputs.kb-gui.packages.${pkgs.system}.kb}/bin/kb";
};
};
}