universe/hosts/Infini-STICK/default.nix

34 lines
586 B
Nix

{ lib, suites, profiles, ... }: {
imports = lib.lists.flatten [
(with suites; [ base develop ])
(with profiles; [
networking.wireless
(with hardware; [
sound
(with gpu; [
amdgpu
intel
nvidia
])
])
btrfs
# services.privoxy
])
./hardware-configuration.nix
];
# networking.interfaces.wlp170s0.useDHCP = true;
networking.interfaces.enp39s0.useDHCP = true;
modules = {
boot.grub.enable = true;
hardware.form.portable = true;
};
system.stateVersion = "21.11";
}