Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

23 lines
519 B
Nix
Raw Permalink Normal View History

2025-10-09 14:15:47 +02:00
# This file gets copied into the installation
{
# To keep things simple, we'll use an absolute path dependency here.
inputs.nixpkgs.url = "@nixpkgs@";
outputs =
{ nixpkgs, ... }:
{
nixosConfigurations.xyz = nixpkgs.lib.nixosSystem {
modules = [
./configuration.nix
(nixpkgs + "/nixos/modules/testing/test-instrumentation.nix")
{
# We don't need nix-channel anymore
nix.channel.enable = false;
}
];
};
};
}