Skip to content

Commit 2bddaf6

Browse files
Merge staging-next into staging
2 parents 10c5ac8 + 14ea16a commit 2bddaf6

106 files changed

Lines changed: 1056 additions & 875 deletions

File tree

Some content is hidden

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

nixos/modules/hardware/video/nvidia.nix

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -329,13 +329,9 @@ in
329329
'';
330330
};
331331

332-
videoAcceleration =
333-
(lib.mkEnableOption ''
334-
Whether video acceleration (VA-API) should be enabled.
335-
'')
336-
// {
337-
default = true;
338-
};
332+
videoAcceleration = lib.mkEnableOption "video acceleration (VA-API)" // {
333+
default = true;
334+
};
339335
};
340336
};
341337

nixos/modules/system/boot/stage-1.nix

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -786,6 +786,5 @@ in
786786
};
787787

788788
imports = [
789-
(mkRenamedOptionModule [ "boot" "initrd" "mdadmConf" ] [ "boot" "swraid" "mdadmConf" ])
790789
];
791790
}

nixos/modules/system/boot/systemd/journald-gateway.nix

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,13 @@ let
2121
};
2222
in
2323
{
24+
imports = [
25+
(lib.mkRenamedOptionModule
26+
[ "services" "journald" "enableHttpGateway" ]
27+
[ "services" "journald" "gateway" "enable" ]
28+
)
29+
];
30+
2431
meta.maintainers = [ lib.maintainers.raitobezarius ];
2532
options.services.journald.gateway = {
2633
enable = lib.mkEnableOption "the HTTP gateway to the journal";

nixos/modules/system/boot/systemd/journald.nix

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,6 @@ let
1010
in
1111
{
1212
imports = [
13-
(lib.mkRenamedOptionModule
14-
[ "services" "journald" "enableHttpGateway" ]
15-
[ "services" "journald" "gateway" "enable" ]
16-
)
1713
];
1814

1915
options = {

nixos/modules/tasks/swraid.nix

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ in
2626
[ "boot" "initrd" "services" "swraid" "mdadmConf" ]
2727
[ "boot" "swraid" "mdadmConf" ]
2828
)
29+
(lib.mkRenamedOptionModule [ "boot" "initrd" "mdadmConf" ] [ "boot" "swraid" "mdadmConf" ])
2930
];
3031

3132
options.boot.swraid = {

0 commit comments

Comments
 (0)