mirror of
https://github.com/tomasriveral/nixos.git
synced 2026-08-12 10:30:44 +02:00
14 lines
311 B
Nix
14 lines
311 B
Nix
_: {
|
|
flake.nixosModules.games = {pkgs, ...}: {
|
|
environment.systemPackages = with pkgs; [
|
|
supertux # fuck mario
|
|
supertuxkart # fuck mariokart
|
|
# my favorite italian plumber is free software
|
|
];
|
|
programs.steam = {
|
|
enable = true;
|
|
protontricks.enable = true;
|
|
};
|
|
};
|
|
}
|