From af5191279102e3c94f9cbebda708880ed2fa7726 Mon Sep 17 00:00:00 2001 From: Infinidoge Date: Thu, 23 Sep 2021 15:37:15 -0400 Subject: [PATCH] feat: begin Infini-FRAMEWORK config --- hosts/Infini-FRAMEWORK/default.nix | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 hosts/Infini-FRAMEWORK/default.nix 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; +}