26 lines
468 B
Nix
26 lines
468 B
Nix
{ inputs, ... }:
|
|
|
|
{
|
|
flake.modules.homeManager.base =
|
|
{ pkgs, ... }:
|
|
{
|
|
home.packages =
|
|
let
|
|
name = "zet";
|
|
in
|
|
[
|
|
(pkgs.writeShellApplication {
|
|
inherit name;
|
|
|
|
runtimeInputs = with pkgs; [
|
|
bashInteractive
|
|
coreutils
|
|
fzf
|
|
git
|
|
];
|
|
|
|
text = builtins.readFile "${inputs.zet}/${name}";
|
|
})
|
|
];
|
|
};
|
|
}
|