Files
nixos-config/user/gaming/utilities.nix
Sravan Balaji 7f320b85d4 Separate System and User packages
- Move user programs out of systems section and int
  user section
- Install user packages with home manager rather than
  system wide
2024-03-27 16:27:20 -04:00

16 lines
207 B
Nix

{ config, lib, pkgs, ... }:
{
programs.gamemode = {
enable = true;
# settings = {};
# enableRenice = true;
};
home.packages = (with pkgs; [
mangohud
goverlay
vkbasalt
]);
}