feat: add initial server configuration

This commit is contained in:
Infinidoge 2021-10-05 08:47:07 -04:00
parent 98ac996979
commit 3312040d74

View file

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