summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--hosts/caroline/default.nix2
-rw-r--r--modules/darwin/desktop/homebrew.nix9
2 files changed, 6 insertions, 5 deletions
diff --git a/hosts/caroline/default.nix b/hosts/caroline/default.nix
index 6012508..6fe4b1b 100644
--- a/hosts/caroline/default.nix
+++ b/hosts/caroline/default.nix
@@ -12,6 +12,8 @@
gpg.enable = true;
};
+ homebrew.casks = ["prismlauncher"];
+
networking = rec {
computerName = "caroline";
hostName = computerName;
diff --git a/modules/darwin/desktop/homebrew.nix b/modules/darwin/desktop/homebrew.nix
index d1e3649..8c5aded 100644
--- a/modules/darwin/desktop/homebrew.nix
+++ b/modules/darwin/desktop/homebrew.nix
@@ -28,11 +28,10 @@ in {
inherit name;
args = {no_quarantine = true;};
};
- in
- mkDefault [
- "firefox"
- (lib.recursiveUpdate (noQuarantine "chromium") (skipSha "chromium"))
- ];
+ in [
+ "firefox"
+ (lib.recursiveUpdate (noQuarantine "chromium") (skipSha "chromium"))
+ ];
};
};
}