Skip to content

Commit

Permalink
patch lix
Browse files Browse the repository at this point in the history
  • Loading branch information
arichtman committed Oct 29, 2024
1 parent 4b88dcc commit 83685e9
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 2 deletions.
7 changes: 6 additions & 1 deletion flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,12 @@
lib.mkFlake {
package-namespace = "arichtman";

nix.package = inputs.nixpkgs.lix;
# Workaround to https://github.com/NixOS/nixpkgs/issues/337036
nix.package = inputs.nixpkgs.lix.overrideAttrs {
doCheck = false;
doInstallCheck = false;
};

channels-config.allowUnfree = true;

systems.modules.darwin = with inputs; [
Expand Down
6 changes: 5 additions & 1 deletion modules/darwin/arichtman/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,11 @@ with lib;
wireguard-tools
];

nix.package = pkgs.lix;
# Workaround to https://github.com/NixOS/nixpkgs/issues/337036
nix.package = pkgs.lix.overrideAttrs {
doCheck = false;
doInstallCheck = false;
};

# Ref https://medium.com/@zmre/nix-darwin-quick-tip-activate-your-preferences-f69942a93236
system.activationScripts.postUserActivation.text = ''
Expand Down

0 comments on commit 83685e9

Please sign in to comment.