21 lines
360 B
Nix
21 lines
360 B
Nix
{pkgs, ...}: {
|
|
imports = [
|
|
./wallpaper.nix
|
|
./programs
|
|
./emails.nix
|
|
];
|
|
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
|
|
];
|
|
};
|
|
}
|