nix-config/modules/hosts/t480/heightwidth.nix

18 lines
327 B
Nix
Raw Normal View History

2025-08-08 02:13:15 +01:00
{ inputs, ... }:
2025-08-07 17:50:54 +01:00
{
2025-08-08 02:13:15 +01:00
flake.modules.homeManager.base =
2025-08-07 17:50:54 +01:00
{ pkgs, ... }:
{
2025-08-08 02:13:15 +01:00
home.packages = [
(pkgs.writeShellApplication rec {
2025-08-07 17:50:54 +01:00
name = "heightwidth";
runtimeInputs = [ pkgs.ffmpeg ];
2025-08-08 02:13:15 +01:00
text = builtins.readFile "${inputs.rwxrob-dot}/scripts/${name}";
2025-08-07 17:50:54 +01:00
})
];
};
}