parent
f7302479b3
commit
9620ca8ca3
13 changed files with 546 additions and 209 deletions
|
@ -26,8 +26,9 @@ in {
|
|||
../waybar
|
||||
../swayidle
|
||||
../gammastep
|
||||
../wezterm
|
||||
# ../wezterm
|
||||
../wayvnc
|
||||
../swaync
|
||||
../foot
|
||||
];
|
||||
|
||||
|
@ -108,7 +109,7 @@ in {
|
|||
windowrulev2 = float, title:^(floating)$
|
||||
|
||||
bind = $mod, b, exec, firefox
|
||||
bind = $mod, t, exec, ${lib.getExe config.programs.wezterm.package}
|
||||
bind = $mod, t, exec, foot
|
||||
bind = $mod, RETURN, exec, emacsclient -c --eval "(ccr/start-eshell)"
|
||||
bind = $mod, x, exec, emacsclient -c
|
||||
bind = $mod SHIFT, n, exec, emacsclient --eval '(ccr/org-capture "n")' -c -F '((name . "floating"))'
|
||||
|
|
22
hmModules/zmkbatx/default.nix
Normal file
22
hmModules/zmkbatx/default.nix
Normal file
|
@ -0,0 +1,22 @@
|
|||
{
|
||||
pkgs,
|
||||
lib,
|
||||
...
|
||||
}: {
|
||||
home.packages = [pkgs.zmkBATx];
|
||||
|
||||
systemd.user.services.zmkBATx = {
|
||||
Install.WantedBy = ["graphical-session.target"];
|
||||
|
||||
Unit = {
|
||||
Description = "zmkBATx";
|
||||
PartOf = ["graphical-session.target"];
|
||||
};
|
||||
|
||||
Service = {
|
||||
ExecStart = lib.getExe pkgs.zmkBATx;
|
||||
Restart = "on-failure";
|
||||
RestartSec = 3;
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue