porcorosso: try installing lutris

This commit is contained in:
Luke Granger-Brown 2020-05-31 18:58:29 +01:00
parent 82ed70f0c9
commit 643cb31750
3 changed files with 13 additions and 9 deletions

View file

@ -11,7 +11,7 @@ in
binaryCaches = lib.mkForce [ "https://cache.nixos.org/" ]; binaryCaches = lib.mkForce [ "https://cache.nixos.org/" ];
trustedBinaryCaches = lib.mkForce [ "https://cache.nixos.org/" "s3://lukegb-nix-cache?endpoint=storage.googleapis.com&trusted=1" ]; trustedBinaryCaches = lib.mkForce [ "https://cache.nixos.org/" "s3://lukegb-nix-cache?endpoint=storage.googleapis.com&trusted=1" ];
}; };
nixpkgs.config = { allowUnfree = true; }; nixpkgs.config = depot.third_party.nixpkgsConfig;
i18n.defaultLocale = "en_GB.UTF-8"; i18n.defaultLocale = "en_GB.UTF-8";
console.keyMap = "us"; console.keyMap = "us";

View file

@ -109,12 +109,6 @@ in {
fontconfig.penultimate.enable = true; fontconfig.penultimate.enable = true;
}; };
#hardware.nvidia.prime.offload.enable = true;
#hardware.nvidia.prime = {
# intelBusId = "PCI:0:2:0";
# nvidiaBusId = "PCI:1:0:0";
#};
hardware.u2f.enable = true; hardware.u2f.enable = true;
services.udev.packages = [ pkgs.libu2f-host ]; services.udev.packages = [ pkgs.libu2f-host ];
services.pcscd.enable = true; services.pcscd.enable = true;
@ -175,9 +169,11 @@ in {
graphicsmagick-imagemagick-compat graphicsmagick-imagemagick-compat
iotop iotop
iw iw
lutris
pavucontrol pavucontrol
rxvt_unicode rxvt_unicode
teamspeak_client teamspeak_client
vulkan-tools
whois whois
xclip xclip
yubioath-desktop yubioath-desktop

View file

@ -1,7 +1,15 @@
{ ... }: { ... }:
let nixpkgsConfig = {
allowUnfree = true;
permittedInsecurePackages = [
"p7zip-16.02"
];
}; in
{ {
nixpkgs = import ./nixpkgs { config.allowUnfree = true; }; inherit nixpkgsConfig;
nixpkgs = import ./nixpkgs {
config = nixpkgsConfig;
};
nixos = import ./nixpkgs/nixos; nixos = import ./nixpkgs/nixos;
nixeval = import ./nixpkgs/nixos/lib/eval-config.nix; nixeval = import ./nixpkgs/nixos/lib/eval-config.nix;
} }