This commit is contained in:
Lilith 2025-08-16 15:54:35 +02:00
parent ec45f12c12
commit f8b76989ae
No known key found for this signature in database
GPG key ID: 272C807BD91F8446
3 changed files with 14 additions and 1 deletions

View file

@ -1,6 +1,8 @@
{lib, ...}: {
{ pkgs, ... }:
{
programs.alacritty = {
enable = true;
package = pkgs.alacritty-graphics;
settings = {
env.TERM = "xterm-256color";
window = {

View file

@ -16,6 +16,7 @@
./alacritty.nix
./clipman.nix
./input.nix
./starship.nix
./common.nix
./direnv.nix

10
home/lilith/starship.nix Normal file
View file

@ -0,0 +1,10 @@
{ ... }:
{
program.starship = {
enable = true;
presets = [ "nerd-font-symbols" ];
enableBashIntegration = true;
enableNushellIntegration = true;
};
}