From 5bd8f796f1a9a0291cbddafe0f1e380464c413e0 Mon Sep 17 00:00:00 2001 From: Infinidoge Date: Fri, 10 Sep 2021 10:52:25 -0400 Subject: [PATCH] feat: flesh out Infini-LAPTOP --- hosts/Infini-LAPTOP/default.nix | 19 ++++++++++++++++++- 1 file changed, 18 insertions(+), 1 deletion(-) diff --git a/hosts/Infini-LAPTOP/default.nix b/hosts/Infini-LAPTOP/default.nix index c915eb0..1ada08b 100644 --- a/hosts/Infini-LAPTOP/default.nix +++ b/hosts/Infini-LAPTOP/default.nix @@ -1 +1,18 @@ -{ ... }: { } +{ suites, profiles, pkgs, ... }: { + imports = suites.graphic + ++ [ ./hardware-configuration.nix ] + ++ (with profiles; + [ + boot.systemd-boot + + networking.wireless + hardware.sound + hardware.amdgpu + # peripherals.printing + ] + ); + + system.stateVersion = "21.11"; + + +}