feat(other-transcode): install other-transcode script
This commit is contained in:
parent
3179db69ba
commit
68840131e3
3 changed files with 64 additions and 0 deletions
55
flake.lock
generated
55
flake.lock
generated
|
|
@ -244,6 +244,24 @@
|
||||||
"type": "github"
|
"type": "github"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"flake-utils_2": {
|
||||||
|
"inputs": {
|
||||||
|
"systems": "systems_2"
|
||||||
|
},
|
||||||
|
"locked": {
|
||||||
|
"lastModified": 1726560853,
|
||||||
|
"narHash": "sha256-X6rJYSESBVr3hBoH0WbKE5KvhPU5bloyZ2L4K60/fPQ=",
|
||||||
|
"owner": "numtide",
|
||||||
|
"repo": "flake-utils",
|
||||||
|
"rev": "c1dfcf08411b08f6b8615f7d8971a2bfa81d5e8a",
|
||||||
|
"type": "github"
|
||||||
|
},
|
||||||
|
"original": {
|
||||||
|
"owner": "numtide",
|
||||||
|
"repo": "flake-utils",
|
||||||
|
"type": "github"
|
||||||
|
}
|
||||||
|
},
|
||||||
"fromYaml": {
|
"fromYaml": {
|
||||||
"flake": false,
|
"flake": false,
|
||||||
"locked": {
|
"locked": {
|
||||||
|
|
@ -556,6 +574,27 @@
|
||||||
"type": "github"
|
"type": "github"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"other-transcode": {
|
||||||
|
"inputs": {
|
||||||
|
"flake-utils": "flake-utils_2",
|
||||||
|
"nixpkgs": [
|
||||||
|
"nixpkgs"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"locked": {
|
||||||
|
"lastModified": 1726830825,
|
||||||
|
"narHash": "sha256-CzDdxWD/D0EwhazNkz6g64BkHX/rM0gBTPkem/r3jbo=",
|
||||||
|
"owner": "logistic-bot",
|
||||||
|
"repo": "other_video_transcoding_nix",
|
||||||
|
"rev": "4324f828aaffb0e768e86e37f58dc22138a61e06",
|
||||||
|
"type": "github"
|
||||||
|
},
|
||||||
|
"original": {
|
||||||
|
"owner": "logistic-bot",
|
||||||
|
"repo": "other_video_transcoding_nix",
|
||||||
|
"type": "github"
|
||||||
|
}
|
||||||
|
},
|
||||||
"river-shifttags": {
|
"river-shifttags": {
|
||||||
"inputs": {
|
"inputs": {
|
||||||
"nixpkgs": [
|
"nixpkgs": [
|
||||||
|
|
@ -584,6 +623,7 @@
|
||||||
"nixpkgs": "nixpkgs",
|
"nixpkgs": "nixpkgs",
|
||||||
"nixpkgs-unstable": "nixpkgs-unstable",
|
"nixpkgs-unstable": "nixpkgs-unstable",
|
||||||
"nixvim": "nixvim",
|
"nixvim": "nixvim",
|
||||||
|
"other-transcode": "other-transcode",
|
||||||
"river-shifttags": "river-shifttags",
|
"river-shifttags": "river-shifttags",
|
||||||
"stylix": "stylix"
|
"stylix": "stylix"
|
||||||
}
|
}
|
||||||
|
|
@ -633,6 +673,21 @@
|
||||||
"type": "github"
|
"type": "github"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"systems_2": {
|
||||||
|
"locked": {
|
||||||
|
"lastModified": 1681028828,
|
||||||
|
"narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=",
|
||||||
|
"owner": "nix-systems",
|
||||||
|
"repo": "default",
|
||||||
|
"rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e",
|
||||||
|
"type": "github"
|
||||||
|
},
|
||||||
|
"original": {
|
||||||
|
"owner": "nix-systems",
|
||||||
|
"repo": "default",
|
||||||
|
"type": "github"
|
||||||
|
}
|
||||||
|
},
|
||||||
"treefmt-nix": {
|
"treefmt-nix": {
|
||||||
"inputs": {
|
"inputs": {
|
||||||
"nixpkgs": [
|
"nixpkgs": [
|
||||||
|
|
|
||||||
|
|
@ -32,6 +32,11 @@
|
||||||
url = "github:ahbnr/nixos-06cb-009a-fingerprint-sensor";
|
url = "github:ahbnr/nixos-06cb-009a-fingerprint-sensor";
|
||||||
inputs.nixpkgs.follows = "nixpkgs";
|
inputs.nixpkgs.follows = "nixpkgs";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
other-transcode = {
|
||||||
|
url = "github:logistic-bot/other_video_transcoding_nix";
|
||||||
|
inputs.nixpkgs.follows = "nixpkgs";
|
||||||
|
};
|
||||||
};
|
};
|
||||||
outputs = {
|
outputs = {
|
||||||
nixpkgs,
|
nixpkgs,
|
||||||
|
|
@ -41,6 +46,7 @@
|
||||||
nixvim,
|
nixvim,
|
||||||
river-shifttags,
|
river-shifttags,
|
||||||
breezex-cursor,
|
breezex-cursor,
|
||||||
|
other-transcode,
|
||||||
nixos-06cb-009a-fingerprint-sensor,
|
nixos-06cb-009a-fingerprint-sensor,
|
||||||
...
|
...
|
||||||
}: let
|
}: let
|
||||||
|
|
@ -50,6 +56,7 @@
|
||||||
river-shifttags = river-shifttags.packages.${system}.default;
|
river-shifttags = river-shifttags.packages.${system}.default;
|
||||||
breezex-cursor = breezex-cursor.packages.${system}.default;
|
breezex-cursor = breezex-cursor.packages.${system}.default;
|
||||||
kitty-unstable = nixpkgs-unstable.legacyPackages.${system}.kitty;
|
kitty-unstable = nixpkgs-unstable.legacyPackages.${system}.kitty;
|
||||||
|
other-transcode = other-transcode.packages.${system}.default;
|
||||||
};
|
};
|
||||||
in {
|
in {
|
||||||
nixosConfigurations.void = nixpkgs.lib.nixosSystem {
|
nixosConfigurations.void = nixpkgs.lib.nixosSystem {
|
||||||
|
|
|
||||||
2
home.nix
2
home.nix
|
|
@ -2,6 +2,7 @@
|
||||||
pkgs,
|
pkgs,
|
||||||
nixvim,
|
nixvim,
|
||||||
river-shifttags,
|
river-shifttags,
|
||||||
|
other-transcode,
|
||||||
kitty-unstable,
|
kitty-unstable,
|
||||||
...
|
...
|
||||||
}: let
|
}: let
|
||||||
|
|
@ -52,6 +53,7 @@ in {
|
||||||
audacity
|
audacity
|
||||||
# video
|
# video
|
||||||
mpv
|
mpv
|
||||||
|
other-transcode
|
||||||
# file sending
|
# file sending
|
||||||
magic-wormhole
|
magic-wormhole
|
||||||
# drawing apps
|
# drawing apps
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue