aboutsummaryrefslogtreecommitdiff
path: root/nix/systems/spontaneity
diff options
context:
space:
mode:
authorPreston Pan <ret2pop@gmail.com>2025-02-03 15:35:10 -0800
committerPreston Pan <ret2pop@gmail.com>2025-02-03 15:35:10 -0800
commit8e5d3a8fcd6893bcd4903cc9b7bfe96f6486d7c6 (patch)
tree6881c472ddbabd6f3788066485f78fe5ddae0b4d /nix/systems/spontaneity
parentd6efefc1d9e6b9fd515c5cb5f2a077e05caeaab7 (diff)
Add spontaneity system; add port to firewall
Diffstat (limited to 'nix/systems/spontaneity')
-rw-r--r--nix/systems/spontaneity/default.nix11
1 files changed, 7 insertions, 4 deletions
diff --git a/nix/systems/spontaneity/default.nix b/nix/systems/spontaneity/default.nix
index f9146f8..89b3ce6 100644
--- a/nix/systems/spontaneity/default.nix
+++ b/nix/systems/spontaneity/default.nix
@@ -1,10 +1,13 @@
-{ ... }:
+{ config, lib, ... }:
{
imports = [
../../modules/default.nix
];
- monorepo = {
- pipewire.enable = false;
- home.enable = false;
+ config.monorepo = {
+ profiles = {
+ home.enable = false;
+ server.enable = true;
+ };
+ vars.hostName = "spontaneity";
};
}