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