restructure, add walker

Signed-off-by: unexplrd <unexplrd@linerds.us>
This commit is contained in:
2025-05-05 23:58:09 +03:00
parent ee3a505d38
commit 260502c6ce
9 changed files with 1025 additions and 648 deletions

View File

@ -1,6 +1,20 @@
{
imports = [
./fuzzel
./waybar
osConfig,
config,
inputs,
pkgs,
lib,
...
}: let
inherit (lib) mkIf mkDefault getExe;
inherit (config.lib.stylix) colors;
inherit (osConfig.networking) hostName;
ifLaptop = mkIf (hostName != "dunamis");
in {
imports = with inputs; [
walker.homeManagerModules.default
];
# programs.fuzzel = import ./fuzzel {inherit config mkDefault;};
programs.walker = import ./walker {inherit config inputs pkgs;};
programs.waybar = import ./waybar {inherit colors config getExe ifLaptop pkgs;};
}