This commit is contained in:
Thilo Billerbeck 2024-10-22 02:02:43 +02:00
commit 235f2c3bef
2 changed files with 3 additions and 28 deletions

View file

@ -93,11 +93,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1729459288, "lastModified": 1729551526,
"narHash": "sha256-gBOVJv+q6Mx8jGvwX7cE6J8+sZmi1uxpRVsO7WxvVuQ=", "narHash": "sha256-7LAGY32Xl14OVQp3y6M43/0AtHYYvV6pdyBcp3eoz0s=",
"owner": "nix-community", "owner": "nix-community",
"repo": "home-manager", "repo": "home-manager",
"rev": "1e27f213d77fc842603628bcf2df6681d7d08f7e", "rev": "5ec753a1fc4454df9285d8b3ec0809234defb975",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -263,22 +263,6 @@
"type": "github" "type": "github"
} }
}, },
"nixpkgs-master": {
"locked": {
"lastModified": 1729509625,
"narHash": "sha256-dQ85bJURM14+LCkCUHG+ANoDHzSkEPg3dLQ5tUlnRD0=",
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "64b2308de14a14ed70e1133f59abe42b3b6e980a",
"type": "github"
},
"original": {
"owner": "NixOS",
"ref": "master",
"repo": "nixpkgs",
"type": "github"
}
},
"nixpkgs-update": { "nixpkgs-update": {
"inputs": { "inputs": {
"mmdoc": "mmdoc", "mmdoc": "mmdoc",
@ -355,7 +339,6 @@
"nix-index-database": "nix-index-database_2", "nix-index-database": "nix-index-database_2",
"nixgl": "nixgl", "nixgl": "nixgl",
"nixpkgs": "nixpkgs_2", "nixpkgs": "nixpkgs_2",
"nixpkgs-master": "nixpkgs-master",
"nixpkgs-update": "nixpkgs-update", "nixpkgs-update": "nixpkgs-update",
"suyu": "suyu", "suyu": "suyu",
"w17": "w17" "w17": "w17"

View file

@ -5,9 +5,6 @@
nixpkgs = { nixpkgs = {
url = "github:NixOS/nixpkgs/nixos-unstable"; url = "github:NixOS/nixpkgs/nixos-unstable";
}; };
nixpkgs-master = {
url = "github:NixOS/nixpkgs/master";
};
nixpkgs-update = { nixpkgs-update = {
url = "github:ryantm/nixpkgs-update"; url = "github:ryantm/nixpkgs-update";
}; };
@ -54,7 +51,6 @@
outputs = outputs =
{ nixpkgs { nixpkgs
, nixpkgs-master
, home-manager , home-manager
, nixgl , nixgl
, w17 , w17
@ -66,10 +62,6 @@
system = "${system}"; system = "${system}";
overlays = [ overlays = [
nixgl.overlay nixgl.overlay
(final: prev: {
inherit (nixpkgs-master.legacyPackages.${prev.system})
deno;
})
]; ];
allowUnfree = true; allowUnfree = true;
}; };