summaryrefslogtreecommitdiff
path: root/modules/passthrough.nix
blob: 3629ef96387be47913d4e82ec7886ab46024f278 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{ pkgs, lib, config, ... }:

{
  environment.systemPackages = with pkgs; [
    supergfxctl
    lsof
  ];

  services.supergfxd.enable = true;

  environment.etc."supergfxd.conf" = {
    source = ./supergfxd.conf;
    mode = "0644";
  };
}