fix app launcher path, switch to MATE fm

This commit is contained in:
atagen 2025-08-27 12:37:58 +10:00
parent faa8d577e4
commit e06ce60bfe
4 changed files with 5 additions and 6 deletions

View file

@ -71,7 +71,7 @@ binds {
Mod+Ctrl+K { move-window-up; }
Mod+Ctrl+L { move-column-right-or-to-monitor-right; }
Mod+D { spawn "qs" "ipc" "call" "launch" "toggle"; }
Mod+E { spawn "pcmanfm"; }
Mod+E { spawn "caja"; }
Mod+Equal { spawn "bitwarden"; }
Mod+F { spawn "firefox"; }
Mod+H { focus-column-left; }

View file

@ -3,8 +3,8 @@
scope,
...
}:
with pkgs;
with pkgs.mate;
scope "apps" {
fm = pcmanfm;
archive = mate.engrampa;
fm = caja;
archive = engrampa;
}

View file

@ -18,7 +18,7 @@ in
};
systemd.user.services.quickshell = {
path = [ inputs.niri.packages.${pkgs.system}.niri-unstable ];
environment.PATH = lib.mkForce "/run/current-system/sw/bin:/run/current-system/sw/sbin:/etc/profiles/per-user/bolt/bin:/etc/profiles/per-user/bolt/sbin";
unitConfig = {
Description = "Quickshell";
Requires = [

View file

@ -13,7 +13,6 @@ in
specialArgs = {
inherit inputs;
inherit (info) system;
# annoyingly, this is the only dependency on `system` from the entrypoint
localPkgs = lib.packagesFromDirectoryRecursive {
inherit (inputs.nixpkgs.legacyPackages.${info.system}) callPackage;
directory = ../pkgs;