21 lines
344 B
Nix
21 lines
344 B
Nix
{
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}: {
|
|
imports = lib.youthlic.loadImports ./.;
|
|
config = {
|
|
youthlic.programs = {
|
|
zoxide.enable = true;
|
|
fzf.enable = true;
|
|
yazi.enable = true;
|
|
eza.enable = true;
|
|
};
|
|
services.mpris-proxy.enable = true;
|
|
home.packages = with pkgs; [
|
|
spacer
|
|
devenv
|
|
just
|
|
];
|
|
};
|
|
}
|