Remove nixpkgs-master input
All checks were successful
flake-check / build (push) Successful in 1m55s
All checks were successful
flake-check / build (push) Successful in 1m55s
This commit is contained in:
parent
e8c10ec9e9
commit
cebeb2be1c
17
flake.lock
17
flake.lock
@ -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"
|
||||||
|
19
flake.nix
19
flake.nix
@ -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
|
||||||
|
Loading…
Reference in New Issue
Block a user