From 3312040d745444df601df5476c8fd9f7c2183baa Mon Sep 17 00:00:00 2001 From: Infinidoge Date: Tue, 5 Oct 2021 08:47:07 -0400 Subject: [PATCH] feat: add initial server configuration --- hosts/Infini-SERVER/default.nix | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 hosts/Infini-SERVER/default.nix diff --git a/hosts/Infini-SERVER/default.nix b/hosts/Infini-SERVER/default.nix new file mode 100644 index 0000000..9c17557 --- /dev/null +++ b/hosts/Infini-SERVER/default.nix @@ -0,0 +1,11 @@ +{ suites, profiles, pkgs, lib, ... }: { + imports = lib.our.flattenListSet { + suites = with suites; [ base ]; + imports = [ ]; + profiles = with profiles; [ + boot.grub + + hardware.gpu.nvidia + ]; + }; +}