28 lines
561 B
Nix
28 lines
561 B
Nix
{ suites, profiles, pkgs, ... }: {
|
|
imports = suites.graphic
|
|
++ [ ./hardware-configuration.nix ]
|
|
++ (with profiles;
|
|
[
|
|
boot.systemd-boot
|
|
|
|
networking.wireless
|
|
hardware.sound
|
|
hardware.nvidia
|
|
# peripherals.printing
|
|
]);
|
|
|
|
system.stateVersion = "21.05";
|
|
|
|
bud.enable = true;
|
|
bud.localFlakeClone = "/home/infinidoge/Projects/DevOS";
|
|
|
|
networking = {
|
|
interfaces = {
|
|
# Enable DHCP per interface
|
|
eth0.useDHCP = true;
|
|
wlp41s0.useDHCP = true;
|
|
};
|
|
|
|
wireless.interfaces = [ "wlp41s0" ];
|
|
};
|
|
}
|