nixpkgs followes to remove dependencies

This commit is contained in:
Kristian Krsnik 2024-02-06 15:26:29 +01:00
parent 489e53b3ca
commit d7d2a131aa
Signed by: Kristian
GPG Key ID: FD1330AC9F909E85
2 changed files with 29 additions and 47 deletions

View File

@ -244,38 +244,6 @@
"type": "indirect"
}
},
"nixpkgs_3": {
"locked": {
"lastModified": 1684570954,
"narHash": "sha256-FX5y4Sm87RWwfu9PI71XFvuRpZLowh00FQpIJ1WfXqE=",
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "3005f20ce0aaa58169cdee57c8aa12e5f1b6e1b3",
"type": "github"
},
"original": {
"owner": "NixOS",
"ref": "nixos-unstable",
"repo": "nixpkgs",
"type": "github"
}
},
"nixpkgs_4": {
"locked": {
"lastModified": 1675309347,
"narHash": "sha256-D3CQ6HRDT2m3XJlrzb5jKq4vNFR5xFTEFKC7iSjlFpM=",
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "006c3bd4dd2f5d1d2094047f307cbf9e2b73d9c5",
"type": "github"
},
"original": {
"owner": "NixOS",
"ref": "nixpkgs-unstable",
"repo": "nixpkgs",
"type": "github"
}
},
"nur": {
"locked": {
"lastModified": 1701623572,
@ -407,7 +375,9 @@
"inputs": {
"flake-compat": "flake-compat_2",
"flake-utils": "flake-utils_2",
"nixpkgs": "nixpkgs_3"
"nixpkgs": [
"nixpkgs"
]
},
"locked": {
"lastModified": 1707182119,
@ -426,7 +396,9 @@
"wallpaper": {
"inputs": {
"flake-utils": "flake-utils_3",
"nixpkgs": "nixpkgs_4",
"nixpkgs": [
"nixpkgs"
],
"pre-commit-hooks": "pre-commit-hooks"
},
"locked": {

View File

@ -11,22 +11,30 @@
inputs.nixpkgs.follows = "nixpkgs";
};
# Nix User Repository
nur.url = "github:nix-community/NUR";
nur = {
url = "github:nix-community/NUR";
};
# Wallpaper
wallpaper.url = "github:lunik1/nix-wallpaper";
wallpaper = {
url = "github:lunik1/nix-wallpaper";
inputs.nixpkgs.follows = "nixpkgs";
};
# Nix index
nix-index-database = {
url = "github:Mic92/nix-index-database";
inputs.nixpkgs.follows = "nixpkgs";
};
# VSCode Extensions
vscode-extensions.url = "github:nix-community/nix-vscode-extensions";
vscode-extensions = {
url = "github:nix-community/nix-vscode-extensions";
inputs.nixpkgs.follows = "nixpkgs";
};
# prism-launcher = {
# # Commit of the 6.3 Release (The last release with FTB support)
# url = "github:PrismLauncher/PrismLauncher/39bba9cbfadc0aac3ef571a80e78a9fa3f5a0028";
# };
# Story Architect
starc = {
url = "git+https://git.krsnik.at/Kristian/starc-flake.git";
inputs.nixpkgs.follows = "nixpkgs";
@ -48,6 +56,7 @@
wallpaper,
nix-index-database,
vscode-extensions,
# prism-launcher,
starc,
scanned-image-extractor,
}: let
@ -72,6 +81,12 @@
{
nixpkgs.overlays = [
vscode-extensions.overlays.default
# prism-launcher.overlay
starc.overlays.default
scanned-image-extractor.overlays.default
# ( # https://github.com/nix-community/home-manager/issues/1538#issuecomment-706627100
# final: prev: {
# unstable = import nixpkgs-unstable {
@ -84,11 +99,6 @@
# };
# }
# )
vscode-extensions.overlays.default
starc.overlays.default
scanned-image-extractor.overlays.default
];
}
];