Skip to content

Commit

Permalink
umm
Browse files Browse the repository at this point in the history
  • Loading branch information
srid committed Oct 4, 2024
1 parent 787b73b commit 01b5223
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions modules/flake-parts/template.nix
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
filter = path: _:
let f = filters path;
in
!(f.nixosOnly or f.darwinOnly);
!(f.nixosOnly || f.darwinOnly);
};
};

Expand All @@ -73,7 +73,7 @@
filter = path: _:
let f = filters path;
in
!(f.darwinOnly or f.homeOnly);
!(f.darwinOnly || f.homeOnly);
};

};
Expand Down Expand Up @@ -103,7 +103,7 @@
filter = path: _:
let f = filters path;
in
!(f.nixosOnly or f.homeOnly);
!(f.nixosOnly || f.homeOnly);
};
};
};
Expand Down

0 comments on commit 01b5223

Please sign in to comment.