Compare commits

...

2 Commits

4 changed files with 6 additions and 6 deletions

View File

@ -4,7 +4,6 @@
./gnupg.nix
./git.nix
./variables.nix
./starship.nix
./i3status.nix
./dunst.nix
./himalaya.nix

View File

@ -39,5 +39,10 @@
openssl
openvpn
feh
ferdi
thunderbird
];
nixpkgs.config.permittedInsecurePackages = [
"ferdi-5.8.1"
];
}

View File

@ -13,6 +13,7 @@
./network.nix
modules/common.nix
modules/smtp.nix
modules/starship.nix
# modules/powermanagement.nix
];

View File

@ -1,7 +1,6 @@
{ config, pkgs, ... }:
{
programs.starship = {
enableFishIntegration = true;
enable = true;
# Configuration écrite dans ~/.config/starship.toml
settings = {
@ -17,7 +16,6 @@
format = "$indicator";
fish_indicator = "";
bash_indicator = "[BASH](bright-white) ";
zsh_indicator = "[ZSH](bright-white) ";
};
username = {
style_user = "bright-white bold";
@ -66,7 +64,4 @@
};
};
};
#xdg.configFile = {
#"starship.toml" .source = ./configs/starship.toml;
#};
}