diff options
Diffstat (limited to 'default.nix')
-rw-r--r-- | default.nix | 15 |
1 files changed, 6 insertions, 9 deletions
diff --git a/default.nix b/default.nix index ad1f750..ea20799 100644 --- a/default.nix +++ b/default.nix @@ -52,9 +52,9 @@ in rec { networking.domain = "dev.simatime.com"; }; }; - # The production server for apps + # The production server for que.run # - Com.Simatime.Prod = buildOS { + Run.Que.Prod = buildOS { deps = { que-server = Run.Que.Server; }; @@ -62,14 +62,11 @@ in rec { imports = [ ./Com/Simatime/packages.nix ./Com/Simatime/users.nix - ./Com/Simatime/Prod/hardware.nix - ./Com/Simatime/Prod/networking.nix - ./Com/Simatime/Prod/configuration.nix - ./Run/Que/service.nix + ./Run/Que/Server.nix + ./Run/Que/Prod.nix ]; - networking.hostName = "prod"; - networking.domain = "prod.simatime.com"; - boot.enableContainers = true; + networking.hostName = "prod.que.run"; + networking.domain = "que.run"; }; }; # Haskell targets |