mirror of
https://github.com/nickolaj-jepsen/nixos.git
synced 2026-01-22 16:16:50 +01:00
fix: replace walker with custom launcher
This commit is contained in:
parent
4a5a8d3ba6
commit
352a9c08d1
8 changed files with 18 additions and 524 deletions
|
|
@ -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" ];
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue