diff options
Diffstat (limited to 'host/Rory-fosscord/software.nix')
-rwxr-xr-x | host/Rory-fosscord/software.nix | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/host/Rory-fosscord/software.nix b/host/Rory-fosscord/software.nix new file mode 100755 index 0000000..78f4412 --- /dev/null +++ b/host/Rory-fosscord/software.nix @@ -0,0 +1,14 @@ +{ config, pkgs, lib, discord-client-proxy, ... }: + +{ + imports = + [ + ../../modules/base-server.nix + # ./services.nix + discord-client-proxy.modules.proxy + discord-client-proxy.modules.users + ]; + + system.stateVersion = "22.11"; # DO NOT EDIT! +} + |