diff --git a/hosts/Infini-FRAMEWORK/default.nix b/hosts/Infini-FRAMEWORK/default.nix new file mode 100644 index 0000000..b120c7b --- /dev/null +++ b/hosts/Infini-FRAMEWORK/default.nix @@ -0,0 +1,14 @@ +{ suites, profiles, pkgs, lib, ... }: { + imports = lib.flattenListSet { + suites = suites.graphical; + imports = [ ]; + profiles = with profiles; [ + boot.grub + + networking.wireless + hardware.sound + ]; + }; + + services.fprintd.enable = true; +}