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