mirror of
https://github.com/ryan4yin/nix-config.git
synced 2026-01-11 20:40:24 +01:00
11 lines
275 B
Nix
11 lines
275 B
Nix
{
|
|
# a flake for testing
|
|
inputs.nixpkgs.url = "github:nixos/nixpkgs/nixos-25.05";
|
|
outputs = {nixpkgs, ...}: let
|
|
system = "x86_64-linux";
|
|
pkgs = import nixpkgs {inherit system;};
|
|
in {
|
|
packages."${system}".default = pkgs.callPackage ./default.nix {};
|
|
};
|
|
}
|