Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions default.nix
Original file line number Diff line number Diff line change
@@ -1,22 +1,22 @@
{
inputs ? import ./nix/inputs.nix,
system ? builtins.currentSystem,
pkgs ? import inputs.nixpkgs."25.05" {
pkgs ? import inputs.main.nixpkgs-rolling {
config = { };
overlays = [ (import ./nix/overlay.nix) ];
overlays = [ ];
inherit system;
},
withManuals ? false, # building the manuals is expensive
}:
let
lib = pkgs.lib;
releases = import ./nix/releases.nix { inherit lib inputs system; };
pkgs-unstable = import inputs.main.nixpkgs-rolling {
# Sphinx skin got very ugly in 24.05, let's not bump it without fixing that
pkgs-pinned = import inputs.nixpkgs."23.11" {
config = { };
overlays = [ ];
inherit system;
};
nix-dev-python-pkgs = with pkgs.python3.pkgs; [
nix-dev-python-pkgs = with pkgs-pinned.python3.pkgs; [
linkify-it-py
myst-parser
sphinx
Expand Down Expand Up @@ -86,12 +86,12 @@ let
'';
};

devmode = pkgs-unstable.devmode.override {
devmode = pkgs.devmode.override {
buildArgs = ''-A build --show-trace'';
open = "/index.html";
};
update-nix-releases = pkgs-unstable.callPackage ./nix/update-nix-releases.nix { };
update-nixpkgs-releases = pkgs-unstable.callPackage ./nix/update-nixpkgs-releases.nix { };
update-nix-releases = pkgs.callPackage ./nix/update-nix-releases.nix { };
update-nixpkgs-releases = pkgs.callPackage ./nix/update-nixpkgs-releases.nix { };
in
{
# build with `nix-build -A build`
Expand Down
2 changes: 1 addition & 1 deletion source/_static/css/custom.css
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ html[data-theme="dark"] .highlight .gd {
margin-bottom: 1rem;
}

.logo a:hover {
.logo a {
text-decoration: none;
}

Expand Down