Skip to content
This repository has been archived by the owner on Jun 12, 2024. It is now read-only.

Commit

Permalink
Fix: Update nixpkgs url for new roadmap
Browse files Browse the repository at this point in the history
  • Loading branch information
TheCodedProf committed May 11, 2024
1 parent 78374d6 commit e83ad89
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 15 deletions.
2 changes: 1 addition & 1 deletion darwin/flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
inputs = {
# nixpkgs is the input that we use for this flake the end section `nixpkgs-unstable` refers to the branch
# of nixpkgs that we want to use. This can be changed to any branch or commit hash.
nixpkgs.url = "github:auxolotl/nixpkgs/nixpkgs-unstable";
nixpkgs.url = "github:nixos/nixpkgs/nixpkgs-unstable";

home-manager = {
url = "github:nix-community/home-manager";
Expand Down
2 changes: 1 addition & 1 deletion direnv/flake.nix
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
description = "An empty devshell with direnv support";

inputs.nixpkgs.url = "github:auxolotl/nixpkgs/nixpkgs-unstable";
inputs.nixpkgs.url = "github:nixos/nixpkgs/nixpkgs-unstable";

outputs =
{ nixpkgs, ... }:
Expand Down
2 changes: 1 addition & 1 deletion flake.nix
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
description = "Templates for getting started with Aux";

inputs.nixpkgs.url = "github:auxolotl/nixpkgs/nixpkgs-unstable";
inputs.nixpkgs.url = "github:nixos/nixpkgs/nixpkgs-unstable";

outputs =
{ self, nixpkgs }:
Expand Down
11 changes: 0 additions & 11 deletions system/configuration.nix
Original file line number Diff line number Diff line change
Expand Up @@ -101,17 +101,6 @@
];

nix = {
registry.nixpkgs = {
from = {
id = "nixpkgs";
type = "indirect";
};
to = {
owner = "auxolotl";
repo = "nixpkgs";
type = "github";
};
};

gc.automatic = true;

Expand Down
2 changes: 1 addition & 1 deletion system/flake.nix
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
description = "A simple system flake using some Aux defaults";

inputs.nixpkgs.url = "github:auxolotl/nixpkgs/nixos-unstable";
inputs.nixpkgs.url = "github:nixos/nixpkgs/nixpkgs-unstable";

outputs =
inputs@{ nixpkgs, ... }:
Expand Down

0 comments on commit e83ad89

Please sign in to comment.