fix: replace walker with custom launcher

This commit is contained in:
Nickolaj Jepsen 2025-03-02 01:38:50 +01:00
parent 4a5a8d3ba6
commit 352a9c08d1
8 changed files with 18 additions and 524 deletions

View file

@ -2,14 +2,23 @@
config,
inputs,
pkgs,
pkgsUnstable,
...
}: {
}: let
fireproofPkgs = inputs.fireproof-shell.packages.${pkgs.system};
in {
environment.systemPackages = [
inputs.fireproof-shell.packages.${pkgs.system}.fireproof-shell
fireproofPkgs.fireproof-shell
fireproofPkgs.fireproof-ipc
pkgsUnstable.astal.io
];
programs.fireproof-shell = {
enable = true;
systemd = true;
monitor.primary = (builtins.head config.monitors).name or "";
settings = {
monitor.main = (builtins.head config.monitors).name or "";
launcher.uwsm = true;
};
};
fireproof.home-manager.wayland.windowManager.hyprland.settings.execr = [ "pkill .fireproof-shel; fireproof-shell" ];
}