6 lines
125 B
Nix
6 lines
125 B
Nix
{ lib, config, pkgs, ... }:
|
|
lib.mkIf config.desktop.enable {
|
|
environment.systemPackages = with pkgs; [
|
|
mangohud
|
|
];
|
|
}
|