Skip to content

Commit

Permalink
mistral: add shpool
Browse files Browse the repository at this point in the history
  • Loading branch information
moni-dz committed Jan 21, 2025
1 parent c93b3eb commit bd3ed54
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
2 changes: 2 additions & 0 deletions hosts/mistral/configuration.nix
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
./hardware-configuration.nix
./crowdsec.nix
./minecraft.nix
inputs.self.nixosModules.shpool
];

boot = {
Expand Down Expand Up @@ -48,6 +49,7 @@
dbus.implementation = "broker";

eternal-terminal.enable = true;
shpool.enable = true;

openssh = {
enable = true;
Expand Down
8 changes: 6 additions & 2 deletions hosts/riscake/configuration.nix
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,12 @@
cmd - e : yabai -m window --toggle zoom-fullscreen
shift + cmd - e : yabai -m window --toggle float --grid 4:4:1:1:2:2
''
+ lib.optionalString config.services.yabai.enable (lib.concatLines (map move (map toString (lib.range 1 6))))
+ lib.optionalString config.services.yabai.enable (lib.concatLines (map ws (map toString (lib.range 1 6))));
+ lib.optionalString config.services.yabai.enable (
lib.concatLines (map move (map toString (lib.range 1 6)))
)
+ lib.optionalString config.services.yabai.enable (
lib.concatLines (map ws (map toString (lib.range 1 6)))
);
};

yabai = {
Expand Down

0 comments on commit bd3ed54

Please sign in to comment.