mirror of
https://github.com/nix-community/home-manager.git
synced 2025-11-08 19:46:05 +01:00
lutris: make module x86_64-linux only (#7425)
This commit is contained in:
parent
d81cb050f5
commit
fb12dbbce3
2 changed files with 2 additions and 1 deletions
|
|
@ -137,6 +137,7 @@ in
|
|||
config = mkIf cfg.enable {
|
||||
assertions = [
|
||||
(lib.hm.assertions.assertPlatform "programs.lutris" pkgs lib.platforms.linux)
|
||||
(lib.hm.assertions.assertPlatform "programs.lutris" pkgs lib.platforms.x86_64)
|
||||
];
|
||||
warnings =
|
||||
let
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
{ lib, pkgs, ... }:
|
||||
lib.optionalAttrs pkgs.stdenv.hostPlatform.isLinux {
|
||||
lib.optionalAttrs (pkgs.stdenv.hostPlatform.isx86_64 && pkgs.stdenv.hostPlatform.isLinux) {
|
||||
lutris-runners = ./runners-configuration.nix;
|
||||
# lutris-wine = ./wine-configuration.nix;
|
||||
lutris-empty = ./empty.nix;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue