Skip to content

Commit

Permalink
use lix instead nix properly
Browse files Browse the repository at this point in the history
  • Loading branch information
AtaraxiaSjel committed Jul 17, 2024
1 parent 1be2a5b commit 023ed01
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion machines/NixOS-VPS/nix.nix
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
{ config, lib, inputs, ... }: {
{ config, lib, pkgs, inputs, ... }: {
nix = {
package = pkgs.lix;
nixPath = lib.mkForce [ "self=/etc/self/compat" "nixpkgs=/etc/nixpkgs" ];
registry.self.flake = inputs.self;
# registry.nixpkgs.flake = inputs.nixpkgs;
Expand Down
3 changes: 2 additions & 1 deletion profiles/overlay.nix
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ with lib; {
attic-static = inputs.attic.packages.${system}.attic-static;
cassowary-py = inputs.cassowary.packages.${system}.cassowary;
devenv = inputs.devenv.packages.${system}.devenv;
nix = prev.lix;
nix-alien = inputs.nix-alien.packages.${system}.nix-alien;
nix-fast-build = inputs.nix-fast-build.packages.${system}.default;
nix-index-update = inputs.nix-alien.packages.${system}.nix-index-update;
Expand Down Expand Up @@ -51,7 +52,7 @@ with lib; {
patches = [ ../patches/neatvnc.patch ] ++ oa.patches or [ ];
});

nix-direnv = inputs.nix-direnv.packages.${system}.default.override { nix = final.lix; };
nix-direnv = inputs.nix-direnv.packages.${system}.default.override { nix = final.nix; };

pass-secret-service = prev.pass-secret-service.overrideAttrs (_: {
installCheckPhase = null;
Expand Down

0 comments on commit 023ed01

Please sign in to comment.