blob: 68e5090b4d91e2ba0c0933b910e7f0bc7a4bae25 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
{pkgs, ...} :
{
environment.systemPackages = with pkgs; [
neovim
kitty
];
programs.steam = {
enable = true;
protontricks.enable = true;
gamescopeSession.enable = true;
};
}
|