nixos/home/david/modules/default.nix

22 lines
360 B
Nix
Raw Normal View History

{pkgs, ...}: {
imports = [
2025-02-01 17:07:03 +08:00
./wallpaper.nix
./programs
2025-04-29 01:13:44 +08:00
./emails.nix
];
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
];
};
}