Skip to content

Commit

Permalink
Fix example flake in README
Browse files Browse the repository at this point in the history
  • Loading branch information
jordan-bravo authored and bandithedoge committed Aug 29, 2023
1 parent 16ac981 commit 516dd57
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,14 @@ Minimal configuration example using flakes and nix-darwin:
nixpkgs.url = "github:nixos/nixpkgs/nixpkgs-unstable";
darwin.url = "github:lnl7/nix-darwin/master";
darwin.inputs.nixpkgs.follows = "nixpkgs";
nixpkgs-firefox-darwin = "github:bandithedoge/nixpkgs-firefox-darwin";
nixpkgs-firefox-darwin.url = "github:bandithedoge/nixpkgs-firefox-darwin";
};
outputs = { self, darwin, nixpkgs, ... }@inputs: {
darwinConfigurations."machine" = darwin.lib.darwinSystem {
system = "x86_64-darwin";
modules = [
{ nixpkgs.overlays = [ inputs.firefox-darwin.overlay ]; }
{ nixpkgs.overlays = [ inputs.nixpkgs-firefox-darwin.overlay ]; }
./configuration.nix
];
};
Expand Down

0 comments on commit 516dd57

Please sign in to comment.