Add ICU to Steam as extra package
This commit is contained in:
parent
e50d411960
commit
981c397c7e
2 changed files with 19 additions and 3 deletions
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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?
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue