Compare commits
2 Commits
7d429a4720
...
bf0c55669c
| Author | SHA1 | Date | |
|---|---|---|---|
|
bf0c55669c
|
|||
|
86a5e79079
|
@ -10,11 +10,12 @@
|
|||||||
#
|
#
|
||||||
pythonPkgs = pkgs.python313Packages.overrideScope (self: super: {
|
pythonPkgs = pkgs.python313Packages.overrideScope (self: super: {
|
||||||
typer = super.typer.overridePythonAttrs (old: {
|
typer = super.typer.overridePythonAttrs (old: {
|
||||||
version = "0.20.0";
|
version = "0.20.1";
|
||||||
src = super.fetchPypi {
|
src = super.fetchPypi {
|
||||||
inherit (old) pname;
|
inherit (old) pname;
|
||||||
version = "0.20.0";
|
version = "0.20.1";
|
||||||
sha256 = "sha256-Gq9klAMXk+SHb7C6z6apErVRz0PB5jyADfixqGZyDDc=";
|
# sha256 = "sha256-Gq9klAMXk+SHb7C6z6apErVRz0PB5jyADfixqGZyDDc="; # v0.20.0
|
||||||
|
sha256 = "sha256-aFhesbASA2icQZm8RA1r5hbwhR6fDrQeSneIRcWg/Vs="; # v0.20.1
|
||||||
};
|
};
|
||||||
});
|
});
|
||||||
|
|
||||||
@ -37,7 +38,7 @@
|
|||||||
# sha256 = "sha256-Gq9klAMXk+SHb7C6z6apErVRz0PB5jyADfixqGZyDDc=";
|
# sha256 = "sha256-Gq9klAMXk+SHb7C6z6apErVRz0PB5jyADfixqGZyDDc=";
|
||||||
# };
|
# };
|
||||||
# });
|
# });
|
||||||
#
|
|
||||||
# rich_14_2_0 = pkgs.python313Packages.rich.overridePythonAttrs (old: {
|
# rich_14_2_0 = pkgs.python313Packages.rich.overridePythonAttrs (old: {
|
||||||
# version = "14.2.0";
|
# version = "14.2.0";
|
||||||
# src = pkgs.python313Packages.fetchPypi {
|
# src = pkgs.python313Packages.fetchPypi {
|
||||||
@ -80,6 +81,7 @@
|
|||||||
|
|
||||||
doCheck = false;
|
doCheck = false;
|
||||||
catchConflicts = false;
|
catchConflicts = false;
|
||||||
|
strictDeps = false;
|
||||||
|
|
||||||
nativeBuildInputs = with pythonPkgs; [poetry-core setuptools];
|
nativeBuildInputs = with pythonPkgs; [poetry-core setuptools];
|
||||||
|
|
||||||
|
|||||||
@ -143,7 +143,7 @@
|
|||||||
jellyfin-desktop
|
jellyfin-desktop
|
||||||
jellyfin-mpv-shim
|
jellyfin-mpv-shim
|
||||||
# tidal-hifi
|
# tidal-hifi
|
||||||
tidal-dl-ng
|
# tidal-dl-ng # TODO: Borked
|
||||||
picard
|
picard
|
||||||
handbrake
|
handbrake
|
||||||
teamspeak6-client
|
teamspeak6-client
|
||||||
|
|||||||
@ -124,6 +124,13 @@
|
|||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
swapDevices = [
|
||||||
|
{
|
||||||
|
device = "/var/swap";
|
||||||
|
size = 1024 * 16; # Without hibernation 4.0 GB to 0.5 x RAM
|
||||||
|
}
|
||||||
|
];
|
||||||
|
|
||||||
hardware = {
|
hardware = {
|
||||||
# Use all redistributable firmware (i.e. nonfree)
|
# Use all redistributable firmware (i.e. nonfree)
|
||||||
enableAllFirmware = true;
|
enableAllFirmware = true;
|
||||||
|
|||||||
Reference in New Issue
Block a user