mirror of
https://github.com/gburd/nix-config.git
synced 2024-11-15 00:36:25 +00:00
f3fd89af54
Many thangs to the hard work and generous availability of: git@github.com:Misterio77/nix-config.git
28 lines
445 B
Nix
28 lines
445 B
Nix
{ 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
|
|
];
|
|
}
|