From a1e20ef55867cd93b2bc270ae458b2120db052c7 Mon Sep 17 00:00:00 2001 From: Matthew Ess Date: Sun, 10 Jan 2021 23:00:23 -0500 Subject: [PATCH] Wire up gagarin config --- machines/gagarin/configuration.nix | 1 + profiles/server.nix | 7 +++++++ 2 files changed, 8 insertions(+) create mode 100644 profiles/server.nix diff --git a/machines/gagarin/configuration.nix b/machines/gagarin/configuration.nix index 99b967a..bc1d676 100644 --- a/machines/gagarin/configuration.nix +++ b/machines/gagarin/configuration.nix @@ -7,6 +7,7 @@ { imports = [ # Include the results of the hardware scan. /etc/nixos/hardware-configuration.nix + ../../profiles/server.nix ]; # Use the systemd-boot EFI boot loader. diff --git a/profiles/server.nix b/profiles/server.nix new file mode 100644 index 0000000..487500d --- /dev/null +++ b/profiles/server.nix @@ -0,0 +1,7 @@ +{ config, pkgs, ... }: + +{ + + imports = [ ./common.nix ]; + +}