mirror of
https://github.com/ryan4yin/nix-config.git
synced 2026-05-19 21:16:51 +02:00
b382999a70
refactor: Use hyphen(`-`) for variable names & folder names(except Python), replace all unserscore(`_`) with hyphen(`-`).
11 lines
275 B
Nix
11 lines
275 B
Nix
{
|
|
# a flake for testing
|
|
inputs.nixpkgs.url = "github:nixos/nixpkgs/nixos-23.11";
|
|
outputs = {nixpkgs, ...}: let
|
|
system = "x86_64-linux";
|
|
pkgs = import nixpkgs {inherit system;};
|
|
in {
|
|
packages."${system}".default = pkgs.callPackage ./default.nix {};
|
|
};
|
|
}
|