mirror of
https://git.sr.ht/~magic_rb/dotfiles
synced 2024-11-29 03:26:13 +01:00
17 lines
434 B
Nix
17 lines
434 B
Nix
{ intelBusId, nvidiaBusId }:
|
|
inputs:
|
|
{ nixpkgs, nixpkgs-unstable, nixpkgs-master, custom, rlib }@ rpkgs:
|
|
{ config, pkgs, ... }:
|
|
{
|
|
hardware.bluetooth.enable = true;
|
|
networking.networkmanager.enable = true;
|
|
|
|
environment.systemPackages = with pkgs; [ libglvnd ];
|
|
|
|
imports = rlib.callModules rpkgs [
|
|
./workstation.nix
|
|
] ++ [
|
|
(import ../modules/xserver-prime.nix { inherit intelBusId nvidiaBusId; } inputs rpkgs)
|
|
];
|
|
}
|