| 22 Aug 2021 |
nrdxp | * The character design of the griffin a few minutes in is truly hilarious 🤣 | 01:10:00 |
| aszlig joined the room. | 17:52:19 |
| 23 Aug 2021 |
| soiledit joined the room. | 02:29:48 |
| aszlig left the room. | 02:30:10 |
| aszlig joined the room. | 09:11:16 |
| aszlig left the room. | 15:44:39 |
| aszlig joined the room. | 21:34:35 |
| princemachiavelli joined the room. | 22:21:17 |
| 24 Aug 2021 |
| aszlig left the room. | 00:53:25 |
| aszlig joined the room. | 09:10:53 |
ash (it/its) 🏳️⚧️ | been a while, anyone down for some rocket league? @nixrl | 19:02:33 |
| nate5824 joined the room. | 22:46:27 |
| 25 Aug 2021 |
| aszlig left the room. | 02:27:38 |
philipp | Oh, didn't see it last night. Let's do it another time though! | 10:11:01 |
| aszlig joined the room. | 10:11:42 |
papojari | Why is the steam package still broken? | 14:43:22 |
jonringer | In reply to @papojari:artemislena.eu Why is the steam package still broken? works for me? | 15:19:50 |
papojari | I'm on unstable. | 15:20:35 |
papojari | Redacted or Malformed Event | 15:20:43 |
papojari | * I'm on unstable. You're on stable I gues? | 15:21:25 |
papojari | * I'm on unstable. You're on stable I guess? | 15:21:26 |
philipp | Works for me on unstable. I don't think jonringer is on stable either. | 15:23:04 |
jonringer | I'm usually on master :) | 15:23:37 |
jonringer | gotta eat the issues before others do ;) | 15:23:50 |
philipp |  Download image.png | 15:24:29 |
papojari | This is my steam config
{ config, pkgs, lib, ... }:
{
nixpkgs.config = {
packageOverrides = pkgs: {
# Steam
steam = pkgs.steam.override {
nativeOnly = true;
};
};
};
programs = {
steam = {
enable = true;
remotePlay.openFirewall = true;
dedicatedServer.openFirewall = true;
};
};
}
But I get an error when building saying a steam package is broken:
➜ /git-repos/nixos-config/manage.sh --apply-system
/git-repos/nixos-config ~
[sudo] Passwort für papojari:
warning: Git tree '/git-repos/nixos-config' is dirty
building the system configuration...
warning: Git tree '/git-repos/nixos-config' is dirty
error: Package ‘steam’ in /nix/store/gih766jr8d6rcdp30sm5gn93sqcfvapp-source/pkgs/games/steam/steam.nix:42 is marked as broken, refusing to evaluate.
a) To temporarily allow broken packages, you can use an environment variable
for a single invocation of the nix tools.
$ export NIXPKGS_ALLOW_BROKEN=1
b) For `nixos-rebuild` you can set
{ nixpkgs.config.allowBroken = true; }
in configuration.nix to override this.
c) For `nix-env`, `nix-build`, `nix-shell` or any other Nix command you can add
{ allowBroken = true; }
to ~/.config/nixpkgs/config.nix.
(use '--show-trace' to show detailed location information)
| 15:28:50 |
papojari | I'm using a flake for my config | 15:29:02 |
papojari | * This is my steam config
{ config, pkgs, lib, ... }:
{
nixpkgs.config = {
packageOverrides = pkgs: {
# Steam
steam = pkgs.steam.override {
nativeOnly = true;
};
};
};
programs = {
steam = {
enable = true;
remotePlay.openFirewall = true;
dedicatedServer.openFirewall = true;
};
};
}
But I get an error when building saying a steam package is broken:
➜ /git-repos/nixos-config/manage.sh --apply-system
/git-repos/nixos-config ~
[sudo] Passwort für papojari:
warning: Git tree '/git-repos/nixos-config' is dirty
building the system configuration...
warning: Git tree '/git-repos/nixos-config' is dirty
error: Package ‘steam’ in /nix/store/gih766jr8d6rcdp30sm5gn93sqcfvapp-source/pkgs/games/steam/steam.nix:42 is marked as broken, refusing to evaluate.
a) To temporarily allow broken packages, you can use an environment variable
for a single invocation of the nix tools.
$ export NIXPKGS_ALLOW_BROKEN=1
b) For `nixos-rebuild` you can set
{ nixpkgs.config.allowBroken = true; }
in configuration.nix to override this.
c) For `nix-env`, `nix-build`, `nix-shell` or any other Nix command you can add
{ allowBroken = true; }
to ~/.config/nixpkgs/config.nix.
(use '--show-trace' to show detailed location information)
| 15:29:32 |
papojari | But the steam.nix has no broken in it. | 15:34:44 |
papojari | Where is a package supposed to be marked as broken? | 15:35:04 |