brewery
notashelf /
bfbcef9c284c54772e80b5a7f33efe9f9bcf75fa

nixir

public

Import-resolving Nix IR plugin

Star0tarball
clone
ssh://git@git.notashelf.dev:33/notashelf/nixir.git
tests/integration/flake_ref/flake.nixNix19 lines468 B
1
{
2
  description = "Local flake fixture for nixir integration tests";
3
4
  inputs.nixpkgs.url = "github:NixOS/nixpkgs/nixos-24.11";
5
6
  outputs = { self, nixpkgs }: {
7
    value = 42;
8
    nixosConfigurations.demo = nixpkgs.lib.nixosSystem {
9
      system = "x86_64-linux";
10
      modules = [
11
        ({ ... }: {
12
          networking.hostName = "nixir-demo";
13
          system.stateVersion = "24.11";
14
          services.openssh.enable = true;
15
        })
16
      ];
17
    };
18
  };
19
}