Skip to content

Commit

Permalink
chore(nixos): use the qt6 version of sddm in tests
Browse files Browse the repository at this point in the history
  • Loading branch information
getchoo committed Jun 22, 2024
1 parent 8c1d7d3 commit 411cb1d
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions test.nix
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ testers.runNixOSTest {
name = "module-test";

nodes.machine =
{ lib, ... }:
{ lib, pkgs, ... }:
{
imports = [
home-manager.nixosModules.default
Expand All @@ -43,7 +43,9 @@ testers.runNixOSTest {
};

services = {
displayManager.sddm = enable;
displayManager.sddm = enable // {
package = pkgs.kdePackages.sddm; # our module/the upstream port requires the qt6 version
};
xserver.enable = true; # required for sddm
};

Expand Down

0 comments on commit 411cb1d

Please sign in to comment.