nix-config/home/users/lkk-admin/lkk-nix-1.nix

17 lines
202 B
Nix
Raw Normal View History

2024-05-15 09:25:27 +00:00
{
config,
pkgs,
...
}: {
imports = [./base ../../features/cli];
features = {
cli = {
fish.enable = true;
starship.enable = true;
};
};
home.stateVersion = "22.11";
}