home-manager/programs/walker: update service to work with uwsm
This commit is contained in:
parent
76862fbfdd
commit
7828a1256b
1 changed files with 15 additions and 1 deletions
|
@ -1,4 +1,8 @@
|
|||
{inputs, ...}: {
|
||||
{
|
||||
lib,
|
||||
inputs,
|
||||
...
|
||||
}: {
|
||||
imports = [
|
||||
inputs.walker.homeManagerModules.default
|
||||
];
|
||||
|
@ -15,4 +19,14 @@
|
|||
switcher.prefix = "/";
|
||||
};
|
||||
};
|
||||
|
||||
systemd.user.services.walker = {
|
||||
Unit = {
|
||||
PartOf = lib.mkForce [];
|
||||
After = lib.mkForce ["graphical-session.target"];
|
||||
};
|
||||
Service = {
|
||||
Slice = lib.mkForce "background-graphical.slice";
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue