Remove with antipatter and aggregate google-chrome override

This commit is contained in:
Filippo Berto 2023-02-15 10:41:52 +01:00
parent a4b29ec259
commit 93b0ccf178
No known key found for this signature in database
GPG key ID: FE98AE5EC52B1056
46 changed files with 264 additions and 452 deletions

View file

@ -17,12 +17,9 @@ with lib; {
enable = true;
driSupport = true;
driSupport32Bit = true;
extraPackages = with pkgs; [
intel-media-driver
vaapiIntel
vaapiVdpau
libvdpau-va-gl
];
extraPackages = builtins.attrValues {
inherit (pkgs) intel-media-driver vaapiIntel vaapiVdpau libvdpau-va-gl;
};
};
# Use same ACPI identifier as Dell Ubuntu
@ -77,11 +74,10 @@ with lib; {
# Enable CUPS to print documents.
services.printing = {
enable = true;
drivers = with pkgs;
[
gutenprint
# cups-kyocera
];
drivers = [
pkgs.gutenprint
# pkgs.cups-kyocera
];
};
services.keybase.enable = true;
@ -133,7 +129,8 @@ with lib; {
# List packages installed in system profile. To search, run:
# $ nix search wget
environment.systemPackages = with pkgs; [ tmux helix vim git ntfs3g ];
environment.systemPackages =
builtins.attrValues { inherit (pkgs) tmux helix vim git ntfs3g; };
# Some programs need SUID wrappers, can be configured further or are
# started in user sessions.
@ -195,7 +192,7 @@ with lib; {
};
services.dbus = {
packages = with pkgs; [ dconf ];
packages = [ pkgs.dconf ];
implementation = "broker";
};
services.gnome.gnome-keyring.enable = true;
@ -267,7 +264,7 @@ with lib; {
nixpkgs.config = {
allowUnfree = true;
packageOverrides = pkgs: {
steam = pkgs.steam.override { extraPkgs = pkgs: with pkgs; [ icu ]; };
steam = pkgs.steam.override { extraPkgs = pkgs: [ pkgs.icu ]; };
};
};