Skip to content

Commit c09a609

Browse files
committed
mistral: add shpool
1 parent 6ee81ad commit c09a609

File tree

3 files changed

+9
-3
lines changed

3 files changed

+9
-3
lines changed

hosts/default.nix

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
{ inputs, ... }:
1+
{ self, inputs, ... }:
22

33
{
44
# nix-darwin configurations
@@ -20,6 +20,7 @@
2020
inputs.crowdsec.nixosModules.crowdsec
2121
inputs.crowdsec.nixosModules.crowdsec-firewall-bouncer
2222
inputs.nix-minecraft.nixosModules.minecraft-servers
23+
self.nixosModules.shpool
2324

2425
{
2526
age.secrets = {

hosts/mistral/configuration.nix

+1
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@
4848
dbus.implementation = "broker";
4949

5050
eternal-terminal.enable = true;
51+
shpool.enable = true;
5152

5253
openssh = {
5354
enable = true;

hosts/riscake/configuration.nix

+6-2
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,12 @@
3636
cmd - e : yabai -m window --toggle zoom-fullscreen
3737
shift + cmd - e : yabai -m window --toggle float --grid 4:4:1:1:2:2
3838
''
39-
+ lib.optionalString config.services.yabai.enable (lib.concatLines (map move (map toString (lib.range 1 6))))
40-
+ lib.optionalString config.services.yabai.enable (lib.concatLines (map ws (map toString (lib.range 1 6))));
39+
+ lib.optionalString config.services.yabai.enable (
40+
lib.concatLines (map move (map toString (lib.range 1 6)))
41+
)
42+
+ lib.optionalString config.services.yabai.enable (
43+
lib.concatLines (map ws (map toString (lib.range 1 6)))
44+
);
4145
};
4246

4347
yabai = {

0 commit comments

Comments
 (0)