Compare commits

..

No commits in common. "9da8bbeb3795df4977e48532d8ba73046477a01a" and "489e53b3cadd6575f9203193d01559ea3ada7f6d" have entirely different histories.

2 changed files with 47 additions and 22 deletions

View File

@ -244,6 +244,38 @@
"type": "indirect" "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": { "nur": {
"locked": { "locked": {
"lastModified": 1701623572, "lastModified": 1701623572,
@ -375,9 +407,7 @@
"inputs": { "inputs": {
"flake-compat": "flake-compat_2", "flake-compat": "flake-compat_2",
"flake-utils": "flake-utils_2", "flake-utils": "flake-utils_2",
"nixpkgs": [ "nixpkgs": "nixpkgs_3"
"nixpkgs"
]
}, },
"locked": { "locked": {
"lastModified": 1707182119, "lastModified": 1707182119,
@ -396,9 +426,7 @@
"wallpaper": { "wallpaper": {
"inputs": { "inputs": {
"flake-utils": "flake-utils_3", "flake-utils": "flake-utils_3",
"nixpkgs": [ "nixpkgs": "nixpkgs_4",
"nixpkgs"
],
"pre-commit-hooks": "pre-commit-hooks" "pre-commit-hooks": "pre-commit-hooks"
}, },
"locked": { "locked": {

View File

@ -11,25 +11,22 @@
inputs.nixpkgs.follows = "nixpkgs"; inputs.nixpkgs.follows = "nixpkgs";
}; };
nur = { # Nix User Repository
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 = { nix-index-database = {
url = "github:Mic92/nix-index-database"; url = "github:Mic92/nix-index-database";
inputs.nixpkgs.follows = "nixpkgs"; 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";
};
# Story Architect
starc = { starc = {
url = "git+https://git.krsnik.at/Kristian/starc-flake.git"; url = "git+https://git.krsnik.at/Kristian/starc-flake.git";
inputs.nixpkgs.follows = "nixpkgs"; inputs.nixpkgs.follows = "nixpkgs";
@ -75,11 +72,6 @@
{ {
nixpkgs.overlays = [ nixpkgs.overlays = [
vscode-extensions.overlays.default
starc.overlays.default
scanned-image-extractor.overlays.default
# ( # https://github.com/nix-community/home-manager/issues/1538#issuecomment-706627100 # ( # https://github.com/nix-community/home-manager/issues/1538#issuecomment-706627100
# final: prev: { # final: prev: {
# unstable = import nixpkgs-unstable { # unstable = import nixpkgs-unstable {
@ -92,6 +84,11 @@
# }; # };
# } # }
# ) # )
vscode-extensions.overlays.default
starc.overlays.default
scanned-image-extractor.overlays.default
]; ];
} }
]; ];