From 990134fdcefe5a520b09ac6dfcaf97066fde6685 Mon Sep 17 00:00:00 2001 From: Preston Pan Date: Mon, 3 Feb 2025 21:27:56 -0800 Subject: update nix directory structure to be more flexible and general --- nix/systems/spontaneity/default.nix | 4 +++- nix/systems/spontaneity/home.nix | 6 ++++++ 2 files changed, 9 insertions(+), 1 deletion(-) create mode 100644 nix/systems/spontaneity/home.nix (limited to 'nix/systems/spontaneity') 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 + ]; +} -- cgit