nixos/home/david/modules/default.nix

13 lines
253 B
Nix
Raw Normal View History

2025-11-11 18:11:23 +08:00
{lib, ...}: {
imports = lib.youthlic.loadImports ./.;
2025-01-23 23:26:34 +08:00
config = {
2025-05-03 20:40:22 +08:00
youthlic.programs = {
zoxide.enable = true;
fzf.enable = true;
yazi.enable = true;
eza.enable = true;
};
2025-02-28 23:44:09 +08:00
services.mpris-proxy.enable = true;
2025-01-23 23:26:34 +08:00
};
}