diff options
author | Rory& <root@rory.gay> | 2024-02-19 11:18:45 +0100 |
---|---|---|
committer | Rory& <root@rory.gay> | 2024-06-05 17:25:16 +0200 |
commit | 7720ba2a8c17e31ea303e5b5c72bf8239d65c6c0 (patch) | |
tree | 3b7c1094a10b7dd8b3562debd8c9c72cf0d8cfd8 /host/Spacebar-nginx/containers/spacebar-server/root.nix | |
parent | Switch dev/nix instance to master (diff) | |
download | Spacebar-Open-Infrastructure-7720ba2a8c17e31ea303e5b5c72bf8239d65c6c0.tar.xz |
Fix container folder name
Diffstat (limited to 'host/Spacebar-nginx/containers/spacebar-server/root.nix')
-rwxr-xr-x | host/Spacebar-nginx/containers/spacebar-server/root.nix | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/host/Spacebar-nginx/containers/spacebar-server/root.nix b/host/Spacebar-nginx/containers/spacebar-server/root.nix new file mode 100755 index 0000000..d543ef2 --- /dev/null +++ b/host/Spacebar-nginx/containers/spacebar-server/root.nix @@ -0,0 +1,32 @@ +{ config, pkgs, lib, ... }: + +{ + imports = + [ + ./services/nginx.nix + ./services/spacebar-server.nix + ./services/postgres.nix + ]; + + environment.systemPackages = with pkgs; [ + wget + neofetch + lnav + zsh + git + lsd + htop + btop + duf + kitty.terminfo + neovim + tmux + jq + yq + pv + dig + cloud-utils + neovim + ]; + system.stateVersion = "22.11"; # DO NOT EDIT! +} \ No newline at end of file |