19 lines
345 B
Nix
19 lines
345 B
Nix
{
|
|
flake.modules.homeManager.base =
|
|
{ pkgs, ... }:
|
|
{
|
|
home.packages = [
|
|
(pkgs.writeShellApplication {
|
|
name = "zet";
|
|
|
|
runtimeInputs = with pkgs; [
|
|
bashInteractive
|
|
coreutils
|
|
fzf
|
|
];
|
|
|
|
text = builtins.readFile ./script.sh;
|
|
})
|
|
];
|
|
};
|
|
}
|