Skip to content

Commit f0ebe4c

Browse files
Merge master into staging-next
2 parents 9f63ff1 + fe96650 commit f0ebe4c

File tree

196 files changed

+2252
-892
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

196 files changed

+2252
-892
lines changed

maintainers/maintainer-list.nix

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7215,6 +7215,11 @@
72157215
name = "Tom van Dijk";
72167216
keys = [ { fingerprint = "D044 F07B 8863 B681 26BD 79FE 7A98 4C82 07AD BA51"; } ];
72177217
};
7218+
dtvillafana = {
7219+
github = "dtvillafana";
7220+
githubId = 82293276;
7221+
name = "David Villafaña";
7222+
};
72187223
dudeofawesome = {
72197224
email = "tourist-04.iced@icloud.com";
72207225
github = "dudeofawesome";

nixos/modules/services/hardware/auto-cpufreq.nix

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,16 @@ in
2424
'';
2525

2626
default = { };
27+
example = {
28+
charger = {
29+
governor = "performance";
30+
turbo = "auto";
31+
};
32+
battery = {
33+
governor = "powersave";
34+
turbo = "never";
35+
};
36+
};
2737
type = lib.types.submodule { freeformType = format.type; };
2838
};
2939
};

nixos/modules/services/mail/roundcube.nix

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,10 @@ let
1010
localDB = cfg.database.host == "localhost";
1111
user = cfg.database.username;
1212
phpWithPspell = pkgs.php83.withExtensions ({ enabled, all }: [ all.pspell ] ++ enabled);
13+
14+
env = {
15+
ASPELL_CONF = "dict-dir ${pkgs.aspellWithDicts (_: cfg.dicts)}/lib/aspell";
16+
};
1317
in
1418
{
1519
options.services.roundcube = {
@@ -263,7 +267,7 @@ in
263267
"catch_workers_output" = true;
264268
};
265269
phpPackage = phpWithPspell;
266-
phpEnv.ASPELL_CONF = "dict-dir ${pkgs.aspellWithDicts (_: cfg.dicts)}/lib/aspell";
270+
phpEnv = env;
267271
};
268272
systemd.services.phpfpm-roundcube.after = [ "roundcube-setup.service" ];
269273

@@ -282,6 +286,8 @@ in
282286
after = [ "network-online.target" ];
283287
wantedBy = [ "multi-user.target" ];
284288

289+
environment = env;
290+
285291
path = [
286292
(if localDB then config.services.postgresql.package else pkgs.postgresql)
287293
];

nixos/tests/caddy.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@
7373
services.caddy = {
7474
package = pkgs.caddy.withPlugins {
7575
plugins = [ "github.com/caddyserver/replace-response@v0.0.0-20241211194404-3865845790a7" ];
76-
hash = "sha256-RrB0/qXL0mCvkxKaz8zhj5GWKEtOqItXP2ASYz7VdMU=";
76+
hash = "sha256-P6rYPJeJcKZgH/d29YQrPf68uWWuav2tQq/2+sVT3tg=";
7777
};
7878
configFile = pkgs.writeText "Caddyfile" ''
7979
{

nixos/tests/lomiri-calendar-app.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@
5757
# Still on main page
5858
machine.succeed("xdotool mousemove 500 740 click 1")
5959
machine.sleep(2)
60-
machine.wait_for_text(r"(Date|Monday|Tuesday|Wednesday|Thursday|Friday|Saturday|Sunday|All day|Name|Details|More)")
60+
machine.wait_for_text(r"(Date|January|February|March|April|May|June|July|August|September|October|November|December|Monday|Tuesday|Wednesday|Thursday|Friday|Saturday|Sunday|All day|Name|Details|More)")
6161
machine.screenshot("lomiri-calendar_newevent")
6262
6363
# On New Event page

pkgs/applications/audio/bitwig-studio/bitwig-studio4.nix

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,12 +28,12 @@
2828
zlib,
2929
}:
3030

31-
stdenv.mkDerivation rec {
31+
stdenv.mkDerivation (finalAttrs: {
3232
pname = "bitwig-studio";
3333
version = "4.4.10";
3434

3535
src = fetchurl {
36-
url = "https://downloads.bitwig.com/stable/${version}/${pname}-${version}.deb";
36+
url = "https://downloads.bitwig.com/stable/${finalAttrs.version}/${finalAttrs.pname}-${finalAttrs.version}.deb";
3737
sha256 = "sha256-gtQ1mhXk0AqGidZk5TCzSR58pD1JJoELMBmELtqyb4U=";
3838
};
3939

@@ -101,7 +101,7 @@ stdenv.mkDerivation rec {
101101
"''${gappsWrapperArgs[@]}" \
102102
--prefix PATH : "${lib.makeBinPath [ ffmpeg ]}" \
103103
--suffix PATH : "${lib.makeBinPath [ xdg-utils ]}" \
104-
--suffix LD_LIBRARY_PATH : "${lib.strings.makeLibraryPath buildInputs}"
104+
--suffix LD_LIBRARY_PATH : "${lib.strings.makeLibraryPath finalAttrs.buildInputs}"
105105
done
106106
107107
find $out -type f -executable -name 'jspawnhelper' | \
@@ -127,4 +127,4 @@ stdenv.mkDerivation rec {
127127
];
128128
sourceProvenance = [ lib.sourceTypes.binaryNativeCode ];
129129
};
130-
}
130+
})

pkgs/applications/audio/bitwig-studio/bitwig-studio5.nix

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -35,13 +35,13 @@
3535
zlib,
3636
}:
3737

38-
stdenv.mkDerivation rec {
38+
stdenv.mkDerivation (finalAttrs: {
3939
pname = "bitwig-studio-unwrapped";
4040
version = "5.3.13";
4141

4242
src = fetchurl {
43-
name = "bitwig-studio-${version}.deb";
44-
url = "https://www.bitwig.com/dl/Bitwig%20Studio/${version}/installer_linux/";
43+
name = "bitwig-studio-${finalAttrs.version}.deb";
44+
url = "https://www.bitwig.com/dl/Bitwig%20Studio/${finalAttrs.version}/installer_linux/";
4545
hash = "sha256-tx+Dz9fTm4DIobwLa055ZOCMG+tU7vQl11NFnEKMAno=";
4646
};
4747

@@ -117,7 +117,7 @@ stdenv.mkDerivation rec {
117117
"''${gappsWrapperArgs[@]}" \
118118
--prefix PATH : "${lib.makeBinPath [ ffmpeg ]}" \
119119
--suffix PATH : "${lib.makeBinPath [ xdg-utils ]}" \
120-
--suffix LD_LIBRARY_PATH : "${lib.strings.makeLibraryPath buildInputs}"
120+
--suffix LD_LIBRARY_PATH : "${lib.strings.makeLibraryPath finalAttrs.buildInputs}"
121121
done
122122
123123
find $out -type f -executable -name 'jspawnhelper' | \
@@ -143,4 +143,4 @@ stdenv.mkDerivation rec {
143143
];
144144
sourceProvenance = [ lib.sourceTypes.binaryNativeCode ];
145145
};
146-
}
146+
})

pkgs/applications/audio/codecserver/default.nix

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,14 @@
88
protobuf,
99
}:
1010

11-
stdenv.mkDerivation rec {
11+
stdenv.mkDerivation (finalAttrs: {
1212
pname = "codecserver";
1313
version = "0.2.0";
1414

1515
src = fetchFromGitHub {
1616
owner = "jketterl";
1717
repo = "codecserver";
18-
rev = version;
18+
rev = finalAttrs.version;
1919
sha256 = "sha256-JzaVBFl3JsFNDm4gy1qOKA9uAjUjNeMiI39l5gfH0aE=";
2020
};
2121

@@ -43,4 +43,4 @@ stdenv.mkDerivation rec {
4343
platforms = lib.platforms.unix;
4444
mainProgram = "codecserver";
4545
};
46-
}
46+
})

pkgs/applications/audio/deadbeef/plugins/headerbar-gtk3.nix

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,14 @@
1212
gtk3,
1313
}:
1414

15-
stdenv.mkDerivation rec {
15+
stdenv.mkDerivation (finalAttrs: {
1616
pname = "deadbeef-headerbar-gtk3-plugin";
1717
version = "1.2";
1818

1919
src = fetchFromGitHub {
2020
owner = "saivert";
2121
repo = "ddb_misc_headerbar_GTK3";
22-
rev = "v${version}";
22+
rev = "v${finalAttrs.version}";
2323
sha256 = "1v1schvnps7ypjqgcbqi74a45w8r2gbhrawz7filym22h1qr9wn0";
2424
};
2525

@@ -49,4 +49,4 @@ stdenv.mkDerivation rec {
4949
maintainers = [ lib.maintainers.jtojnar ];
5050
platforms = lib.platforms.linux;
5151
};
52-
}
52+
})

pkgs/applications/audio/deadbeef/plugins/statusnotifier.nix

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,14 @@
99
libdbusmenu,
1010
}:
1111

12-
stdenv.mkDerivation rec {
12+
stdenv.mkDerivation (finalAttrs: {
1313
pname = "deadbeef-statusnotifier-plugin";
1414
version = "1.6";
1515

1616
src = fetchFromGitHub {
1717
owner = "vovochka404";
1818
repo = "deadbeef-statusnotifier-plugin";
19-
rev = "v${version}";
19+
rev = "v${finalAttrs.version}";
2020
sha256 = "sha256-6WEbY59vPNrL3W5GUwFQJimmSS+td8Ob+G46fPAxfV4=";
2121
};
2222

@@ -48,4 +48,4 @@ stdenv.mkDerivation rec {
4848
maintainers = [ lib.maintainers.kurnevsky ];
4949
platforms = lib.platforms.linux;
5050
};
51-
}
51+
})

0 commit comments

Comments
 (0)