mirror of
https://git.sr.ht/~magic_rb/dotfiles
synced 2024-11-26 18:16:13 +01:00
13 lines
156 B
Nix
13 lines
156 B
Nix
|
{ pkgs, lib, ... }:
|
||
|
let
|
||
|
inherit (lib)
|
||
|
getExe;
|
||
|
in
|
||
|
{
|
||
|
imports = [
|
||
|
../../common/xserver.nix
|
||
|
];
|
||
|
|
||
|
services.xserver.videoDrivers = [ "nvidia" ];
|
||
|
}
|