- Move all programs into system folder - Create `default.nix` for each folder to reduce number of imports in configuration.nix - Rename some modules to be more generic and less package specific to allow for easy swapping of programs in the future - Update flake.lock
16 lines
218 B
Nix
16 lines
218 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
{
|
|
programs.gamemode = {
|
|
enable = true;
|
|
# settings = {};
|
|
# enableRenice = true;
|
|
};
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
mangohud
|
|
goverlay
|
|
vkbasalt
|
|
];
|
|
}
|