more moving things around

This commit is contained in:
Noah Masur
2025-02-16 15:40:15 -05:00
parent b36895f108
commit dc6b6f8328
34 changed files with 368 additions and 386 deletions

View File

@ -17,14 +17,18 @@ in
# Enable graphics acceleration
hardware.graphics = {
enable = true;
enable32Bit = true;
enable = lib.mkDefault true;
enable32Bit = lib.mkDefault true;
};
# Enable gamemode which can be executed on a per-game basis
programs.gamemode.enable = true;
programs.gamemode.enable = lib.mkDefault true;
environment.systemPackages = with pkgs; [ moonlight-qt ];
nmasur.presets.programs = {
steam.enable = lib.mkDefault true;
};
};
}