dotfiles/nix/nixos/profiles/laptop.nix

19 lines
401 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;
2021-02-24 12:32:22 +01:00
environment.systemPackages = with nixpkgs; [
libglvnd
];
imports = [
./workstation.nix
(import ../modules/xserver-prime.nix { inherit intelBusId nvidiaBusId; })
2021-01-18 20:24:07 +01:00
] ++ [
];
}