mirror of
https://git.sr.ht/~magic_rb/dotfiles
synced 2024-12-02 13:06:11 +01:00
19 lines
401 B
Nix
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; })
|
|
] ++ [
|
|
|
|
];
|
|
}
|