nix-config/modules2/hosts/t480/fixapost.nix
2025-08-08 02:10:20 +01:00

17 lines
327 B
Nix

{ inputs, ... }:
{
flake.modules.homeManager.base =
{ pkgs, ... }:
{
home.packages = [
(pkgs.writeShellApplication rec {
name = "fixapost";
runtimeInputs = [ pkgs.coreutils ];
text = builtins.readFile "${inputs.rwxrob-dot}/scripts/${name}";
})
];
};
}