walker be workin now

This commit is contained in:
marty 2025-12-18 09:35:29 +00:00
parent 4cbfffefaa
commit 0db960aec4
6 changed files with 36 additions and 24 deletions

View file

@ -1,7 +1,6 @@
{ config, pkgs, ... }:
{ config, pkgs, inputs, ... }:
{
imports = [ ./window_manager ];
# Home Manager needs a bit of information about you and the paths it should
# manage.
home.username = "marty";
@ -77,6 +76,9 @@
EDITOR = "codium";
};
imports = [
./window_manager
];
# Let Home Manager install and manage itself.
programs.home-manager.enable = true;
}

View file

@ -6,7 +6,6 @@
}:
{
home.packages = [ pkgs.cmatrix ];
programs.rofi = {
enable = true;
};

View file

@ -34,10 +34,13 @@
wayland.windowManager.hyprland = {
enable = true;
settings = {
exec-once = [
"elephant"
];
"$mod" = "SUPER";
bind = [
"$mod, D, exec, rofi -show drun"
"$mod, Enter, exec, kitty"
"$mod, D, exec, walker"
"$mod, return, exec, kitty"
];
};
};