17 lines
293 B
Nix
17 lines
293 B
Nix
{
|
|
config,
|
|
pkgs,
|
|
...
|
|
}: {
|
|
home.packages = [
|
|
(import ./heic-to-jpg.script.nix {inherit pkgs;})
|
|
(import ./tmux-default.script.nix {
|
|
inherit pkgs;
|
|
inherit config;
|
|
})
|
|
(import ./git_check_clean.script.nix {
|
|
inherit pkgs;
|
|
inherit config;
|
|
})
|
|
];
|
|
}
|