mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-11 04:05:40 +03:00
parent
7271b3a2c3
commit
ce207587ab
2 changed files with 30 additions and 30 deletions
|
@ -948,7 +948,7 @@ in
|
|||
nomad = runTest ./nomad.nix;
|
||||
non-default-filesystems = handleTest ./non-default-filesystems.nix { };
|
||||
non-switchable-system = runTest ./non-switchable-system.nix;
|
||||
noto-fonts = handleTest ./noto-fonts.nix { };
|
||||
noto-fonts = runTest ./noto-fonts.nix;
|
||||
noto-fonts-cjk-qt-default-weight = handleTest ./noto-fonts-cjk-qt-default-weight.nix { };
|
||||
novacomd = handleTestOn [ "x86_64-linux" ] ./novacomd.nix { };
|
||||
npmrc = handleTest ./npmrc.nix { };
|
||||
|
|
|
@ -1,5 +1,4 @@
|
|||
import ./make-test-python.nix (
|
||||
{ pkgs, lib, ... }:
|
||||
{ lib, ... }:
|
||||
{
|
||||
name = "noto-fonts";
|
||||
meta.maintainers = with lib.maintainers; [
|
||||
|
@ -7,7 +6,9 @@ import ./make-test-python.nix (
|
|||
midchildan
|
||||
];
|
||||
|
||||
nodes.machine = {
|
||||
nodes.machine =
|
||||
{ pkgs, ... }:
|
||||
{
|
||||
imports = [ ./common/x11.nix ];
|
||||
environment.systemPackages = [ pkgs.gedit ];
|
||||
fonts = {
|
||||
|
@ -56,4 +57,3 @@ import ./make-test-python.nix (
|
|||
machine.screenshot("screen")
|
||||
'';
|
||||
}
|
||||
)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue