dotfiles/nix/nixos/profiles/laptop.nix
2021-02-28 18:14:01 +01:00

19 lines
401 B
Nix

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