diff options
author | TheArcaneBrony <myrainbowdash949@gmail.com> | 2023-03-09 18:26:24 +0000 |
---|---|---|
committer | TheArcaneBrony <myrainbowdash949@gmail.com> | 2023-03-09 18:27:37 +0000 |
commit | fbb03f7c56e848c21fea046f7150236d2a34ebe2 (patch) | |
tree | 0c58791b8cc754d46dfff7f478887117bc8b2bad /host/Rory-nginx | |
parent | Add multithreading to rebuild (diff) | |
download | Rory-Open-Architecture-fbb03f7c56e848c21fea046f7150236d2a34ebe2.tar.xz |
Add gitfs patch
Diffstat (limited to 'host/Rory-nginx')
-rwxr-xr-x | host/Rory-nginx/configuration.nix | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/host/Rory-nginx/configuration.nix b/host/Rory-nginx/configuration.nix index 9d1a2c4..ea1e373 100755 --- a/host/Rory-nginx/configuration.nix +++ b/host/Rory-nginx/configuration.nix @@ -4,6 +4,7 @@ imports = [ ../../modules/base-server.nix + ../../modules/packages/gitfs.nix ]; networking = { @@ -73,5 +74,9 @@ security.acme.acceptTerms = true; security.acme.defaults.email = "root@thearcanebrony.net"; + environment.systemPackages = with pkgs; [ + #gitfs + ]; + system.stateVersion = "22.11"; # DO NOT EDIT! } |