shell
This commit is contained in:
parent
ec45f12c12
commit
f8b76989ae
3 changed files with 14 additions and 1 deletions
|
|
@ -1,6 +1,8 @@
|
||||||
{lib, ...}: {
|
{ pkgs, ... }:
|
||||||
|
{
|
||||||
programs.alacritty = {
|
programs.alacritty = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
package = pkgs.alacritty-graphics;
|
||||||
settings = {
|
settings = {
|
||||||
env.TERM = "xterm-256color";
|
env.TERM = "xterm-256color";
|
||||||
window = {
|
window = {
|
||||||
|
|
|
||||||
|
|
@ -16,6 +16,7 @@
|
||||||
./alacritty.nix
|
./alacritty.nix
|
||||||
./clipman.nix
|
./clipman.nix
|
||||||
./input.nix
|
./input.nix
|
||||||
|
./starship.nix
|
||||||
|
|
||||||
./common.nix
|
./common.nix
|
||||||
./direnv.nix
|
./direnv.nix
|
||||||
|
|
|
||||||
10
home/lilith/starship.nix
Normal file
10
home/lilith/starship.nix
Normal file
|
|
@ -0,0 +1,10 @@
|
||||||
|
{ ... }:
|
||||||
|
{
|
||||||
|
program.starship = {
|
||||||
|
enable = true;
|
||||||
|
presets = [ "nerd-font-symbols" ];
|
||||||
|
|
||||||
|
enableBashIntegration = true;
|
||||||
|
enableNushellIntegration = true;
|
||||||
|
};
|
||||||
|
}
|
||||||
Loading…
Add table
Add a link
Reference in a new issue