Compare commits
2 commits
3c51bc8803
...
e980eb167b
Author | SHA1 | Date | |
---|---|---|---|
Evie Litherland-Smith | e980eb167b | ||
Evie Litherland-Smith | 7e92a3e068 |
9
Makefile
9
Makefile
|
@ -1,13 +1,8 @@
|
|||
.PHONY: default build switch copy
|
||||
|
||||
default: build
|
||||
.PHONY: build copy
|
||||
|
||||
build:
|
||||
nix run . -- build --flake . --show-trace
|
||||
|
||||
switch:
|
||||
nix run . -- switch --flake . --show-trace
|
||||
|
||||
copy: build
|
||||
nix copy --to ssh://legion ./result
|
||||
nix copy --to ssh://pixelifytica@legion ./result
|
||||
rm ./result
|
||||
|
|
|
@ -17,10 +17,10 @@
|
|||
fuzzy = true;
|
||||
filter-desktop = true;
|
||||
terminal = with config.programs; "${
|
||||
if foot.enable
|
||||
then foot.package
|
||||
else pkgs.foot
|
||||
}/bin/foot -e";
|
||||
if alacritty.enable
|
||||
then alacritty.package
|
||||
else pkgs.alacritty
|
||||
}/bin/alacritty -e";
|
||||
lines = 24;
|
||||
width = 80;
|
||||
tabs = 4;
|
||||
|
|
|
@ -56,7 +56,7 @@ binds {
|
|||
Mod+F1 { spawn "swaylockfx"; }
|
||||
Mod+P { spawn "wlogout"; }
|
||||
Mod+D { spawn "fuzzel"; }
|
||||
Mod+Return { spawn "foot"; }
|
||||
Mod+Return { spawn "alacritty"; }
|
||||
Mod+Shift+Return { spawn "emacsclient" "-c"; }
|
||||
|
||||
XF86AudioRaiseVolume allow-when-locked=true { spawn "volumectl" "-u" "+" "5"; }
|
||||
|
|
|
@ -32,7 +32,7 @@
|
|||
};
|
||||
};
|
||||
modifier = "Mod4";
|
||||
terminal = "${config.programs.foot.package}/bin/foot";
|
||||
terminal = "${config.programs.alacritty.package}/bin/alacritty";
|
||||
menu = "${config.programs.fuzzel.package}/bin/fuzzel";
|
||||
workspaceAutoBackAndForth = true;
|
||||
bars = [];
|
||||
|
|
|
@ -71,6 +71,7 @@
|
|||
"max-length" = 50;
|
||||
"rewrite" = {
|
||||
"(.*) - GNU Emacs at (.*)" = " $1 [$2]";
|
||||
"(alacritty.*)" = " $1";
|
||||
"(foot.*)" = " $1";
|
||||
"(.*) - mpv" = " $1";
|
||||
"swayimg: (.*)" = " $1";
|
||||
|
|
Reference in a new issue