Add fixapost

This commit is contained in:
Oliver Davies 2025-08-08 02:07:21 +01:00
parent 426edf6c84
commit fcc65505d0
3 changed files with 39 additions and 0 deletions

View file

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