summary refs log tree commit diff
path: root/flake.nix
blob: eb7c07037e9f8c4ef2c1392287c003d221585ec7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
{
  description = "A very basic flake";

  inputs = {
    nixpkgs.url = "github:NixOS/nixpkgs?ref=nixos-unstable";
  };

  outputs = { self, nixpkgs }: {
    packages.x86_64-linux.default = nixpkgs.legacyPackages.x86_64-linux.callPackage ./default.nix { };
    modules.default = import ./module.nix;
  };
}