nix-config/roles/home-manager/terminal.nix
Gabe Venberg e8a5bb3bc9 many things:
* flake.lock update, with code changes needed.
* miniserve.rs static directory listing.
* change from typst-ls to tinymist for typst lsp
* deletion of hugo template.
* change from self-built duckdns module to nixpkgs one.
2025-02-24 11:39:38 +01:00

33 lines
470 B
Nix

{
config,
pkgs,
lib,
...
}: {
imports = [
./minimal-terminal.nix
../../configs/home-manager/nushell
../../configs/home-manager/starship.nix
];
user = {
nvim = {
enable-lsp = lib.mkDefault true;
enable-treesitter = lib.mkDefault true;
};
};
home.packages = with pkgs; [
tre-command
hyperfine
dua
fclones
libqalculate
];
programs = {
zoxide.enable = true;
tealdeer.enable = true;
};
}