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