26 lines
416 B
Nix
26 lines
416 B
Nix
{ lib, suites, profiles, ... }: {
|
|
imports = lib.lists.flatten [
|
|
(with suites; [ graphic develop ])
|
|
|
|
(with profiles; [
|
|
boot.grub
|
|
|
|
networking.wireless
|
|
|
|
(with hardware; [
|
|
sound
|
|
gpu.amdgpu
|
|
gpu.intel
|
|
laptop
|
|
])
|
|
|
|
btrfs
|
|
])
|
|
|
|
./hardware-configuration.nix
|
|
];
|
|
|
|
networking.interfaces.wlp170s0.useDHCP = true;
|
|
|
|
system.stateVersion = "21.11";
|
|
}
|