nixos/home/david/modules/default.nix

23 lines
344 B
Nix
Raw Normal View History

{
lib,
pkgs,
...
2025-07-13 06:04:55 +08:00
}:
{
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
home.packages = with pkgs; [
spacer
2025-02-03 14:07:16 +08:00
devenv
2025-02-05 21:19:33 +08:00
just
2025-01-23 23:26:34 +08:00
];
};
}