aboutsummaryrefslogtreecommitdiff
path: root/nix/systems/spontaneity
diff options
context:
space:
mode:
authorPreston Pan <ret2pop@gmail.com>2025-02-03 21:27:56 -0800
committerPreston Pan <ret2pop@gmail.com>2025-02-03 21:27:56 -0800
commit990134fdcefe5a520b09ac6dfcaf97066fde6685 (patch)
tree6bda301a63218b7b0c7dd8b0eb6051e657e3533f /nix/systems/spontaneity
parent21a09d9eea2be5c7a326a6f177521bb1cda25fb9 (diff)
update nix directory structure to be more flexible and general
Diffstat (limited to 'nix/systems/spontaneity')
-rw-r--r--nix/systems/spontaneity/default.nix4
-rw-r--r--nix/systems/spontaneity/home.nix6
2 files changed, 9 insertions, 1 deletions
diff --git a/nix/systems/spontaneity/default.nix b/nix/systems/spontaneity/default.nix
index bc7ba81..5f79855 100644
--- a/nix/systems/spontaneity/default.nix
+++ b/nix/systems/spontaneity/default.nix
@@ -3,11 +3,13 @@
imports = [
../../modules/default.nix
../../modules/vda-simple.nix
+ ../home.nix
];
+
config.monorepo = {
profiles = {
server.enable = true;
- home.enable = false;
+ ttyonly.enable = true;
};
vars.hostName = "spontaneity";
};
diff --git a/nix/systems/spontaneity/home.nix b/nix/systems/spontaneity/home.nix
new file mode 100644
index 0000000..276ba52
--- /dev/null
+++ b/nix/systems/spontaneity/home.nix
@@ -0,0 +1,6 @@
+{ lib, config, pkgs, ... }:
+{
+ imports = [
+ ../../modules/home/default.nix
+ ];
+}