chore(deps): update flake deps

This commit is contained in:
dusk 2021-05-14 22:10:53 +03:00
parent b7572be391
commit 86b4218b14
Signed by: dusk
GPG Key ID: 1D8F8FAF2294D6EA
3 changed files with 38 additions and 19 deletions

View File

@ -89,17 +89,18 @@
"inputs": { "inputs": {
"deploy": "deploy", "deploy": "deploy",
"devshell": "devshell", "devshell": "devshell",
"nixlib": "nixlib",
"nixpkgs": [ "nixpkgs": [
"nixos" "nixos"
], ],
"utils": "utils_2" "utils": "utils_2"
}, },
"locked": { "locked": {
"lastModified": 1620950194, "lastModified": 1621012625,
"narHash": "sha256-3fh8kUxZ/by7QP7vop+C+X6nj/YzYHnld9epGbRWKQ0=", "narHash": "sha256-xRBbDpQDUz3mSwL2WoePz6c3zIUtZ2ML3qW0B9CVspU=",
"owner": "divnix", "owner": "divnix",
"repo": "devlib", "repo": "devlib",
"rev": "213afcefb2db0bb5fd3fad871303c43b158d8204", "rev": "b0de71f4924e513e21d21a0ec60a2cb180f2187c",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -207,11 +208,11 @@
}, },
"latest": { "latest": {
"locked": { "locked": {
"lastModified": 1620996356, "lastModified": 1621018889,
"narHash": "sha256-uP6yxaBnOOdmPz1piipZT3+AUdsVjqBjLMDCLFnw8r8=", "narHash": "sha256-+TP7qxrRB4uYFL9DnCehr0oaiK44nszKExr62nuE508=",
"owner": "NixOS", "owner": "NixOS",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "89cc391728876b394c04cf53c984260c3034617e", "rev": "cc2fc35667b5871ad8a7fc7a73d32f4e81068c4c",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -281,6 +282,21 @@
"type": "github" "type": "github"
} }
}, },
"nixlib": {
"locked": {
"lastModified": 1620519687,
"narHash": "sha256-+6Dd72b2CASuXm2W7KRxZIE7AOy/dj4mU28vaF+zxcs=",
"owner": "divnix",
"repo": "nixpkgs.lib",
"rev": "c7b6169809c5f74dd0c34f3d69e9d12ba4d448de",
"type": "github"
},
"original": {
"owner": "divnix",
"repo": "nixpkgs.lib",
"type": "github"
}
},
"nixos": { "nixos": {
"locked": { "locked": {
"lastModified": 1620901170, "lastModified": 1620901170,
@ -365,11 +381,11 @@
}, },
"nur": { "nur": {
"locked": { "locked": {
"lastModified": 1620989058, "lastModified": 1621012357,
"narHash": "sha256-nH0i0kUrAAKYs/CoJf+wwlbY3dqGdbXYVRMqLtV1aTs=", "narHash": "sha256-Qi1AYYeL1QCiSYPlxJQ0AsKJ8A3HGFE2ghC2nU6syLg=",
"owner": "nix-community", "owner": "nix-community",
"repo": "NUR", "repo": "NUR",
"rev": "7d17ceb9815035ae55c9a66f23acbce2e7cf65ad", "rev": "fac280e3ddb06cc9c03f9795afe35482fe96edeb",
"type": "github" "type": "github"
}, },
"original": { "original": {

View File

@ -122,9 +122,16 @@ in
sudo.extraConfig = '' sudo.extraConfig = ''
Defaults lecture = never Defaults lecture = never
''; '';
rtkit.enable = true;
}; };
sound.enable = true; sound.enable = false;
services.pipewire = {
enable = true;
alsa.enable = true;
alsa.support32Bit = true;
pulse.enable = true;
};
hardware = { hardware = {
opengl = { opengl = {
driSupport = true; driSupport = true;
@ -142,11 +149,12 @@ in
++ [ pkgs.driversi686Linux.amdvlk ]; ++ [ pkgs.driversi686Linux.amdvlk ];
}; };
pulseaudio = { pulseaudio = {
enable = true; enable = false;
support32Bit = true; support32Bit = true;
}; };
}; };
environment = { environment = {
systemPackages = [ btrfsDiff ]; systemPackages = [ btrfsDiff ];
pathsToLink = [ "/share/zsh" ]; pathsToLink = [ "/share/zsh" ];
@ -170,13 +178,6 @@ in
xserver = { xserver = {
videoDrivers = [ "amdgpu" ]; videoDrivers = [ "amdgpu" ];
}; };
pipewire = {
enable = false;
alsa = {
enable = true;
support32Bit = true;
};
};
postgresql = { postgresql = {
enable = false; enable = false;
enableTCPIP = true; enableTCPIP = true;

View File

@ -128,7 +128,9 @@ in
"--ignore-gpu-blocklist" "--ignore-gpu-blocklist"
"--enable-gpu-rasterization" "--enable-gpu-rasterization"
"--enable-zero-copy" "--enable-zero-copy"
"--disable-gpu-driver-bug-workarounds" # "--enable-features=VaapiVideoDecoder"
# "--use-gl=egl"
# "--disable-gpu-driver-bug-workarounds"
]; ];
in in
pkgs.writeScriptBin "chromium-wayland" '' pkgs.writeScriptBin "chromium-wayland" ''