Remove nixpkgs-master input
All checks were successful
flake-check / build (push) Successful in 1m55s

This commit is contained in:
Torjus Håkestad 2024-10-03 11:18:34 +02:00
parent e8c10ec9e9
commit cebeb2be1c
2 changed files with 9 additions and 27 deletions

View File

@ -217,22 +217,6 @@
"type": "github" "type": "github"
} }
}, },
"nixpkgs-master": {
"locked": {
"lastModified": 1727912358,
"narHash": "sha256-ba06/LDxDIZexS2mCdwRdBluBKwRJ91cAsnnOPmVdfA=",
"owner": "nixos",
"repo": "nixpkgs",
"rev": "78389c563cbe52a1b5742cd760ef52291b429fc2",
"type": "github"
},
"original": {
"owner": "nixos",
"ref": "master",
"repo": "nixpkgs",
"type": "github"
}
},
"nixpkgs-stable": { "nixpkgs-stable": {
"locked": { "locked": {
"lastModified": 1720535198, "lastModified": 1720535198,
@ -361,7 +345,6 @@
"huecli": "huecli", "huecli": "huecli",
"nix-packages": "nix-packages", "nix-packages": "nix-packages",
"nixpkgs": "nixpkgs", "nixpkgs": "nixpkgs",
"nixpkgs-master": "nixpkgs-master",
"nixpkgs-stable": "nixpkgs-stable", "nixpkgs-stable": "nixpkgs-stable",
"nixprstatus": "nixprstatus", "nixprstatus": "nixprstatus",
"sops-nix": "sops-nix" "sops-nix": "sops-nix"

View File

@ -2,9 +2,8 @@
description = "Torjus nixos config flake"; description = "Torjus nixos config flake";
inputs = { inputs = {
# nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-unstable";
nixpkgs-stable.url = "github:nixos/nixpkgs?ref=nixos-23.11"; nixpkgs-stable.url = "github:nixos/nixpkgs?ref=nixos-23.11";
nixpkgs-master.url = "github:nixos/nixpkgs?ref=master"; #nixpkgs-master.url = "github:nixos/nixpkgs?ref=master";
nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-unstable"; nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-unstable";
home-manager = { home-manager = {
url = "github:nix-community/home-manager"; url = "github:nix-community/home-manager";
@ -33,7 +32,7 @@
{ {
self, self,
nixpkgs, nixpkgs,
nixpkgs-master, # nixpkgs-master,
nixpkgs-stable, nixpkgs-stable,
nixprstatus, nixprstatus,
sops-nix, sops-nix,
@ -51,12 +50,12 @@
config.allowUnfree = true; config.allowUnfree = true;
}; };
}; };
overlay-master = final: prev: { # overlay-master = final: prev: {
master = import nixpkgs-master { # master = import nixpkgs-master {
inherit system; # inherit system;
config.allowUnfree = true; # config.allowUnfree = true;
}; # };
}; # };
allSystems = [ allSystems = [
"x86_64-linux" "x86_64-linux"
"aarch64-linux" "aarch64-linux"
@ -67,7 +66,7 @@
f: nixpkgs.lib.genAttrs allSystems (system: f { pkgs = import nixpkgs { inherit system; }; }); f: nixpkgs.lib.genAttrs allSystems (system: f { pkgs = import nixpkgs { inherit system; }; });
commonOverlays = [ commonOverlays = [
overlay-stable overlay-stable
overlay-master # overlay-master
ghettoptt.overlays.default ghettoptt.overlays.default
huecli.overlays.default huecli.overlays.default
nix-packages.overlays.default nix-packages.overlays.default