aboutsummaryrefslogtreecommitdiffstats
path: root/modules/by-name/fo
diff options
context:
space:
mode:
Diffstat (limited to 'modules/by-name/fo')
-rw-r--r--modules/by-name/fo/foot/module.nix25
1 files changed, 3 insertions, 22 deletions
diff --git a/modules/by-name/fo/foot/module.nix b/modules/by-name/fo/foot/module.nix
index d818aac0..2c56fa07 100644
--- a/modules/by-name/fo/foot/module.nix
+++ b/modules/by-name/fo/foot/module.nix
@@ -55,28 +55,9 @@ in {
};
};
- systemd.user.services = let
- footCfg = config.home-manager.users.soispha.programs.foot;
- inherit (footCfg.server) systemdTarget;
- in {
- foot-initial-term = {
- Unit = {
- Description = "Fast, lightweight and minimalistic Wayland terminal emulator.";
- Documentation = "man:foot(1)";
- PartOf = [systemdTarget];
- After = [systemdTarget];
- ConditionEnvironment = "WAYLAND_DISPLAY";
- };
-
- Service = {
- ExecStart = "${lib.getExe' footCfg.package "footclient"}";
- };
-
- Install = {
- WantedBy = [systemdTarget];
- };
- };
- };
+ soispha.river.autostart = [
+ "${lib.getExe' config.home-manager.users.soispha.programs.foot.package "footclient"}"
+ ];
};
};
}