From 546f932f1700931cd659964105129fd9f2ea5d3e Mon Sep 17 00:00:00 2001 From: TheArcaneBrony Date: Sun, 7 May 2023 16:28:02 +0200 Subject: Split software configuration from hardware configuration to prepare for merging --- host/Rory-fosscord/configuration.nix | 4 +--- host/Rory-fosscord/software.nix | 14 ++++++++++++++ 2 files changed, 15 insertions(+), 3 deletions(-) create mode 100755 host/Rory-fosscord/software.nix (limited to 'host/Rory-fosscord') diff --git a/host/Rory-fosscord/configuration.nix b/host/Rory-fosscord/configuration.nix index a58ba05..84c997e 100755 --- a/host/Rory-fosscord/configuration.nix +++ b/host/Rory-fosscord/configuration.nix @@ -4,9 +4,7 @@ imports = [ ../../modules/base-server.nix - # ./services.nix - discord-client-proxy.modules.proxy - discord-client-proxy.modules.users + ./software.nix ]; networking = { 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! +} + -- cgit 1.5.1