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 ]; + +}