Files
dotfiles/modules/hyprland/runner.nix

17 lines
319 B
Nix

{ inputs, pkgs, ... }:
{
home.packages = [
pkgs.walker
];
systemd.user.services.walker-deamon = {
Install = {
WantedBy = [ "hyprland-session.target" ];
};
Service = {
ExecStart = "${pkgs.writeShellScript "watch-store" ''
walker --gapplication-service
''}";
};
};
}