This commit is contained in:
dusk 2022-10-29 03:24:57 +03:00
parent ea8a97ab11
commit b7c5a0cbd4
Signed by: dusk
GPG Key ID: 1D8F8FAF2294D6EA
2 changed files with 17 additions and 16 deletions

View File

@ -54,10 +54,13 @@
alsa.support32Bit = true; alsa.support32Bit = true;
pulse.enable = true; pulse.enable = true;
}; };
hardware.pulseaudio = {
enable = false;
support32Bit = true;
};
services.xserver.videoDrivers = ["nvidia" "amdgpu"]; services.xserver.videoDrivers = ["nvidia" "amdgpu"];
hardware = { hardware = {
bluetooth.enable = true;
xpadneo.enable = true;
nvidia.prime = { nvidia.prime = {
amdgpuBusId = "PCI:5:0:0"; amdgpuBusId = "PCI:5:0:0";
nvidiaBusId = "PCI:1:0:0"; nvidiaBusId = "PCI:1:0:0";
@ -79,10 +82,11 @@
vulkan-loader vulkan-loader
]; ];
}; };
pulseaudio = {
enable = false;
support32Bit = true;
}; };
hardware = {
bluetooth.enable = true;
xpadneo.enable = true;
}; };
programs.light.enable = true; programs.light.enable = true;
@ -109,15 +113,12 @@
}; };
}; };
# for tailscale
networking.firewall.checkReversePath = "loose"; networking.firewall.checkReversePath = "loose";
services.tailscale.enable = false;
services = { services = {
earlyoom.enable = true; earlyoom.enable = true;
tailscale.enable = false;
ipfs = {
enable = false;
enableGC = true;
autoMount = true;
};
gvfs.enable = true; gvfs.enable = true;
}; };

View File

@ -35,20 +35,20 @@
}: }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "fractal-next"; pname = "fractal-next";
version = "5c70961c"; version = "26_10_2022";
src = fetchFromGitLab { src = fetchFromGitLab {
domain = "gitlab.gnome.org"; domain = "gitlab.gnome.org";
owner = "GNOME"; owner = "GNOME";
repo = "fractal"; repo = "fractal";
rev = "5c70961cea34ac92658b59254bc3ef428ca7fa91"; rev = "c3d1bd7ac8c1374d887746acf614b5036ac2f95c";
sha256 = "sha256-Ai26Nwm9ujqxW0NCpxd97NiJWImitl87coS724nv27g="; sha256 = "sha256-UzlV9MSOtCSx7RNIbr2sv4y1Kxfqo/laWJBeNiGdrZI=";
}; };
cargoDeps = rustPlatform.fetchCargoTarball { cargoDeps = rustPlatform.fetchCargoTarball {
inherit src; inherit src;
name = "${pname}-${version}"; name = "${pname}-${version}";
sha256 = "sha256-8fgQvlZGbntz2buQ/nCo90Kbel9aeC4kD3uqTdefylg="; sha256 = "sha256-E0x+0vtpJATagVzpQ57hMiiTxqFR1vFM2sN7W2e17fc=";
}; };
nativeBuildInputs = [ nativeBuildInputs = [