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

18 lines
327 B
Nix
Raw Normal View History

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