hosts/Infini-DESKTOP: redo imports

This commit is contained in:
Infinidoge 2021-11-02 15:48:46 -04:00
parent 1df42e5190
commit 037e4c699e

View file

@ -1,16 +1,25 @@
{ suites, profiles, pkgs, lib, ... }: {
imports = lib.our.flattenListSet {
suites = with suites; [ graphic develop ];
imports = [ ./hardware-configuration.nix ];
profiles = with profiles; [
imports = lib.lists.flatten [
(with suites; [
graphic
develop
])
(with profiles; [
boot.systemd-boot
networking.wireless
hardware.sound
hardware.gpu.nvidia
# peripherals.printing
(with hardware; [
sound
gpu.nvidia
])
btrfs
])
./hardware-configuration.nix
];
};
system.stateVersion = "21.05";