dotfiles/nixos/profiles/laptop.nix

13 lines
313 B
Nix
Raw Normal View History

{ intelBusId, nvidiaBusId }: { config, pkgs, ... }:
{
hardware.bluetooth.enable = true;
networking.networkmanager.enable = true;
environment.systemPackages = with pkgs; [ libglvnd ];
imports = [
./workstation.nix
(import ../modules/xserver-prime.nix { inherit intelBusId nvidiaBusId; })
];
}