dotfiles/nixos/profiles/laptop.nix

17 lines
395 B
Nix
Raw Normal View History

2021-01-18 20:24:07 +01:00
{ 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; })
2021-01-18 20:24:07 +01:00
] ++ [
];
}