mirror of
https://git.sr.ht/~magic_rb/dotfiles
synced 2024-11-26 18:16:13 +01:00
2998847634
Bumps `nixpkgs-unstable`, `nixpkgs-stable`, `home-manager-stable`, `home-manager-unstable`. Signed-off-by: magic_rb <magic_rb@redalder.org>
27 lines
391 B
Nix
27 lines
391 B
Nix
{
|
|
pkgs,
|
|
lib,
|
|
...
|
|
}: let
|
|
inherit
|
|
(lib)
|
|
getExe
|
|
;
|
|
in {
|
|
imports = [
|
|
../../common/xserver.nix
|
|
];
|
|
|
|
services.xserver.videoDrivers = ["modesetting" "nouveau"];
|
|
|
|
services.libinput = {
|
|
touchpad.clickMethod = "clickfinger";
|
|
touchpad.disableWhileTyping = true;
|
|
};
|
|
|
|
hardware.nvidia.prime = {
|
|
intelBusId = "PCI:0:2:0";
|
|
nvidiaBusId = "PCI:1:0:0";
|
|
};
|
|
}
|