You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
445 B
28 lines
445 B
{ pkgs, ... }:
|
|
let
|
|
steam-with-pkgs = pkgs.steam.override {
|
|
extraPkgs = pkgs: with pkgs; [
|
|
xorg.libXcursor
|
|
xorg.libXi
|
|
xorg.libXinerama
|
|
xorg.libXScrnSaver
|
|
libpng
|
|
libpulseaudio
|
|
libvorbis
|
|
stdenv.cc.cc.lib
|
|
libkrb5
|
|
keyutils
|
|
];
|
|
};
|
|
in
|
|
{
|
|
users.users.layla.packages = with pkgs; [
|
|
firefox
|
|
|
|
steam-with-pkgs
|
|
gamescope
|
|
protontricks
|
|
lutris
|
|
prismlauncher
|
|
];
|
|
}
|
|
|