Files
nixos-config/home-manager/commands/custom/build.nix
2025-08-28 20:40:47 -07:00

11 lines
269 B
Nix

# build.nix
let
# Import your nixpkgs channel. The <> syntax finds it automatically.
pkgs = import <nixpkgs> {
# Apply your overlay here
overlays = [ (import ./sage.nix) ];
};
in
# This file now evaluates to exactly one thing: the sage package.
pkgs.sage