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 1be3a4a
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 2 deletions.
3 changes: 3 additions & 0 deletions hosts/mistral/configuration.nix
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
inputs,
lib,
self,
pkgs,
...
}:
Expand All @@ -10,6 +11,7 @@
./hardware-configuration.nix
./crowdsec.nix
./minecraft.nix
self.nixosModules.shpool
];

boot = {
Expand Down Expand Up @@ -48,6 +50,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
1 change: 1 addition & 0 deletions modules/parts/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@
extraModuleArgs = {
inherit
self'
self
inputs'
inputs
system
Expand Down

0 comments on commit 1be3a4a

Please sign in to comment.