nix-config/modules/zet/default.nix

27 lines
468 B
Nix
Raw Normal View History

{ inputs, ... }:
2025-09-02 23:42:31 +01:00
{
flake.modules.homeManager.base =
{ pkgs, ... }:
{
home.packages =
let
2025-09-02 23:42:31 +01:00
name = "zet";
in
[
(pkgs.writeShellApplication {
inherit name;
2025-09-02 23:42:31 +01:00
runtimeInputs = with pkgs; [
bashInteractive
coreutils
fzf
git
];
2025-09-02 23:42:31 +01:00
text = builtins.readFile "${inputs.zet}/${name}";
})
];
2025-09-02 23:42:31 +01:00
};
}