commit 9eb97f01c9f007a76df59f07457adb3480f9e432
parent c055ed477b4527efec91b6289a53676b7ae4a584
Author: vin <vin@vineetk.net>
Date: Mon, 13 Jan 2025 23:23:37 -0500
add nixpkgs-unstable-small for updated yt-dlp
Diffstat:
3 files changed, 26 insertions(+), 7 deletions(-)
diff --git a/flake.lock b/flake.lock
@@ -47,11 +47,11 @@
]
},
"locked": {
- "lastModified": 1736366465,
- "narHash": "sha256-Fo68EF6p/N9GJyHiAUbXtiE7IJlb3IMjK86LuxFMsRU=",
+ "lastModified": 1736785676,
+ "narHash": "sha256-TY0jUwR3EW0fnS0X5wXMAVy6h4Z7Y6a3m+Yq++C9AyE=",
"owner": "nix-community",
"repo": "home-manager",
- "rev": "7e00856596891850ba5ad4c5ecd2ed74468c08c5",
+ "rev": "fc52a210b60f2f52c74eac41a8647c1573d2071d",
"type": "github"
},
"original": {
@@ -77,11 +77,11 @@
},
"nixpkgs": {
"locked": {
- "lastModified": 1736344531,
- "narHash": "sha256-8YVQ9ZbSfuUk2bUf2KRj60NRraLPKPS0Q4QFTbc+c2c=",
+ "lastModified": 1736701207,
+ "narHash": "sha256-jG/+MvjVY7SlTakzZ2fJ5dC3V1PrKKrUEOEE30jrOKA=",
"owner": "nixos",
"repo": "nixpkgs",
- "rev": "bffc22eb12172e6db3c5dde9e3e5628f8e3e7912",
+ "rev": "ed4a395ea001367c1f13d34b1e01aa10290f67d6",
"type": "github"
},
"original": {
@@ -109,11 +109,28 @@
"type": "github"
}
},
+ "nixpkgs-small": {
+ "locked": {
+ "lastModified": 1736789786,
+ "narHash": "sha256-YKr7RhOtFFl7metHJ2oWmPF5//mlvasFr1jJ0gLdNyQ=",
+ "owner": "nixos",
+ "repo": "nixpkgs",
+ "rev": "ba9f7942037ac78a690eb7e2c15f4869c9515eb4",
+ "type": "github"
+ },
+ "original": {
+ "owner": "nixos",
+ "ref": "nixos-unstable-small",
+ "repo": "nixpkgs",
+ "type": "github"
+ }
+ },
"root": {
"inputs": {
"everblush-gtk": "everblush-gtk",
"home-manager": "home-manager",
- "nixpkgs": "nixpkgs"
+ "nixpkgs": "nixpkgs",
+ "nixpkgs-small": "nixpkgs-small"
}
}
},
diff --git a/flake.nix b/flake.nix
@@ -3,6 +3,7 @@
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
+ nixpkgs-small.url = "github:nixos/nixpkgs/nixos-unstable-small";
home-manager = {
url = "github:nix-community/home-manager";
diff --git a/home.nix b/home.nix
@@ -450,6 +450,7 @@ set-option -sa terminal-features ',*:RGB'
yt-dlp = {
enable = true;
+ package = inputs.nixpkgs-small.legacyPackages.x86_64-linux.yt-dlp;
settings = {
merge-output-format = "mkv";
embed-subs = true;