diff --git a/flake.lock b/flake.lock index 5deb106..83e637a 100644 --- a/flake.lock +++ b/flake.lock @@ -249,11 +249,11 @@ }, "nixos-hardware": { "locked": { - "lastModified": 1714984131, - "narHash": "sha256-kjIvFbbKb6RGIJyOgcF+BBWHNzhNSNqRTxX/SkrkRno=", + "lastModified": 1715010655, + "narHash": "sha256-FmdhvR/hgBkPDvIv/HOEIQsSMaVXh8wvTrnep8dF3Jc=", "owner": "NixOS", "repo": "nixos-hardware", - "rev": "e148ccbecbd2fe4dc4768fba67f6db828466ad06", + "rev": "d1659c9eb8af718118fb4bbe2c86797c8b8623eb", "type": "github" }, "original": { @@ -296,15 +296,15 @@ }, "nixpkgs_2": { "locked": { - "lastModified": 1714906307, - "narHash": "sha256-UlRZtrCnhPFSJlDQE7M0eyhgvuuHBTe1eJ9N9AQlJQ0=", - "owner": "NixOS", + "lastModified": 1714930819, + "narHash": "sha256-A+XeHE/YbsDV5fEROEiQDLCnHojdSwkvK1iv6vdy1o8=", + "owner": "auxolotl", "repo": "nixpkgs", - "rev": "25865a40d14b3f9cf19f19b924e2ab4069b09588", + "rev": "39c77ffe3193820e988d9551e390295d181a09c1", "type": "github" }, "original": { - "owner": "NixOS", + "owner": "auxolotl", "ref": "nixos-unstable", "repo": "nixpkgs", "type": "github" diff --git a/flake.nix b/flake.nix index 248959c..e25904d 100644 --- a/flake.nix +++ b/flake.nix @@ -5,7 +5,7 @@ inputs = { # Track base packages against unstable - nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable"; + nixpkgs.url = "github:auxolotl/nixpkgs/nixos-unstable"; # Replace Nix with Lix: https://lix.systems/ lix = { diff --git a/modules/base/nix.nix b/modules/base/nix.nix index ef0bfd8..0f1ae0a 100644 --- a/modules/base/nix.nix +++ b/modules/base/nix.nix @@ -1,5 +1,9 @@ # Nix configuration { pkgs, config, lib, inputs, ... }: { + # Disable local documentation + # This is a temporary workaround to get Auxolotl to build. See https://forum.aux.computer/t/rebuild-is-failing/497/30 + documentation.nixos.enable = false; + nix = { settings = { # Enable Flakes @@ -40,4 +44,4 @@ builders-use-substitutes = true ''; }; -} \ No newline at end of file +}