ctucx.git: nixfiles

ctucx' nixfiles

commit 28529ec5cf2c73c14190ea43cec7b3e4992022af
parent b8104a68642bfa51372213265f00e6e929d4fd53
Author: Leah (ctucx) <leah@ctu.cx>
Date: Sat, 11 Jun 2022 21:38:53 +0200

move: machines/blechbuechse/homebrew.nix -> configurations/homebrew.nix
2 files changed, 34 insertions(+), 32 deletions(-)
A
configurations/homebrew.nix
|
34
++++++++++++++++++++++++++++++++++
D
machines/blechbuechse/homebrew.nix
|
32
--------------------------------
diff --git a/configurations/homebrew.nix b/configurations/homebrew.nix
@@ -0,0 +1,34 @@
+{ ... }:
+
+{
+  homebrew = {
+    enable  = true;
+    cleanup = "zap";
+    brews   = [
+      "mas"
+      "openjdk"
+    ];
+    casks   = [
+      "iterm2"
+      "firefox"
+      "thunderbird"
+      "libreoffice"
+      "iina"
+      "polymc"
+
+      "rectangle"
+
+      "coconutbattery"
+      "hot"
+      "hiddenbar"
+      "keepingyouawake"
+      "topnotch"
+      "monitorcontrol"
+    ];
+    masApps = {
+      Telegram    = 747648890;
+      Navigator   = 1590354537;
+      "ICE Buddy" = 1595947689;
+    };
+  };
+}
diff --git a/machines/blechbuechse/homebrew.nix b/machines/blechbuechse/homebrew.nix
@@ -1,32 +0,0 @@
-{ ... }:
-
-{
-  homebrew = {
-    enable  = true;
-    cleanup = "zap";
-    brews   = [
-      "mas"
-    ];
-    casks   = [
-      "iterm2"
-      "firefox"
-      "thunderbird"
-      "libreoffice"
-      "iina"
-
-      "rectangle"
-
-      "coconutbattery"
-      "hot"
-      "hiddenbar"
-      "keepingyouawake"
-      "topnotch"
-      "monitorcontrol"
-    ];
-    masApps = {
-      Telegram    = 747648890;
-      Navigator   = 1590354537;
-      "ICE Buddy" = 1595947689;
-    };
-  };
-}