dynix/tests/dynix-vm-configuration.nix

63 lines
1.4 KiB
Nix
Raw Normal View History

# SPDX-FileCopyrightText: 2026 Qyriad <qyriad@qyriad.me>
#
# SPDX-License-Identifier: EUPL-1.1
2026-02-11 13:19:59 +01:00
{ pkgs, lib, modulesPath, ... }:
let
moduleList = import (modulesPath + "/module-list.nix");
2026-02-11 13:19:59 +01:00
dynixFromSearchPath = let
res = builtins.tryEval <dynix>;
in lib.optional res.success res.value;
in
{
imports = [
(modulesPath + "/testing/test-instrumentation.nix")
2026-02-11 13:19:59 +01:00
] ++ lib.concatLists [
dynixFromSearchPath
moduleList
];
system.switch.enable = true;
documentation.enable = false;
boot.loader.grub = {
enable = true;
device = "/dev/vda";
forceInstall = true;
};
nix = {
package = pkgs.lixPackageSets.latest.lix;
nixPath = [
("nixpkgs=" + pkgs.path)
2026-02-11 13:19:59 +01:00
"/nix/var/nix/profiles/per-user/root/profile/share/nixos/modules"
];
settings = {
experimental-features = [ "nix-command" "pipe-operator" ];
substituters = lib.mkForce [ ];
hashed-mirrors = null;
connect-timeout = 1;
# For my debugging purposes.
show-trace = true;
};
};
environment.pathsToLink = [ "/share" ];
environment.extraOutputsToInstall = [ "modules" ];
environment.variables = {
"NIXOS_CONFIG" = "/etc/nixos/configuration.nix";
};
environment.shellAliases = {
ls = "eza --long --header --group --group-directories-first --classify --binary";
};
environment.systemPackages = with pkgs; [
eza
fd
ripgrep
];
}