Add ICU to Steam as extra package

This commit is contained in:
Filippo Berto 2021-11-14 16:39:33 +01:00
parent e50d411960
commit 981c397c7e
2 changed files with 19 additions and 3 deletions

View file

@ -216,7 +216,14 @@
'';
security.pam.services.sddm.enableGnomeKeyring = true;
nixpkgs.config.allowUnfree = true;
nixpkgs.config = {
allowUnfree = true;
packageOverrides = pkgs: {
steam = pkgs.steam.override {
extraPkgs = pkgs: with pkgs; [ icu ];
};
};
};
nix.gc.automatic = true;
# This value determines the NixOS release from which the default

View file

@ -57,7 +57,9 @@
enable = true;
enableSSHSupport = true;
};
steam.enable = true;
steam = {
enable = true;
};
zsh = {
enable = true;
syntaxHighlighting.enable = true;
@ -161,7 +163,14 @@
virtualbox.host.enable = true;
};
nixpkgs.config.allowUnfree = true;
nixpkgs.config = {
allowUnfree = true;
packageOverrides = pkgs: {
steam = pkgs.steam.override {
extraPkgs = pkgs: with pkgs; [ icu ];
};
};
};
nix.gc.automatic = true;
system.stateVersion = "21.05"; # Did you read the comment?