Compare commits
No commits in common. "589fa7fcbeea0893e151580673b9bb7a9a7dfb41" and "17001c65250070900bc0a197c4b5ba7147a76590" have entirely different histories.
589fa7fcbe
...
17001c6525
|
@ -4,6 +4,7 @@
|
||||||
./gnupg.nix
|
./gnupg.nix
|
||||||
./git.nix
|
./git.nix
|
||||||
./variables.nix
|
./variables.nix
|
||||||
|
./starship.nix
|
||||||
./i3status.nix
|
./i3status.nix
|
||||||
./dunst.nix
|
./dunst.nix
|
||||||
./himalaya.nix
|
./himalaya.nix
|
||||||
|
|
|
@ -39,10 +39,5 @@
|
||||||
openssl
|
openssl
|
||||||
openvpn
|
openvpn
|
||||||
feh
|
feh
|
||||||
ferdi
|
|
||||||
thunderbird
|
|
||||||
];
|
|
||||||
nixpkgs.config.permittedInsecurePackages = [
|
|
||||||
"ferdi-5.8.1"
|
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
{ config, pkgs, ... }:
|
{ config, pkgs, ... }:
|
||||||
{
|
{
|
||||||
programs.starship = {
|
programs.starship = {
|
||||||
|
enableFishIntegration = true;
|
||||||
enable = true;
|
enable = true;
|
||||||
# Configuration écrite dans ~/.config/starship.toml
|
# Configuration écrite dans ~/.config/starship.toml
|
||||||
settings = {
|
settings = {
|
||||||
|
@ -16,6 +17,7 @@
|
||||||
format = "$indicator";
|
format = "$indicator";
|
||||||
fish_indicator = "";
|
fish_indicator = "";
|
||||||
bash_indicator = "[BASH](bright-white) ";
|
bash_indicator = "[BASH](bright-white) ";
|
||||||
|
zsh_indicator = "[ZSH](bright-white) ";
|
||||||
};
|
};
|
||||||
username = {
|
username = {
|
||||||
style_user = "bright-white bold";
|
style_user = "bright-white bold";
|
||||||
|
@ -64,4 +66,7 @@
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
#xdg.configFile = {
|
||||||
|
#"starship.toml" .source = ./configs/starship.toml;
|
||||||
|
#};
|
||||||
}
|
}
|
|
@ -13,7 +13,6 @@
|
||||||
./network.nix
|
./network.nix
|
||||||
modules/common.nix
|
modules/common.nix
|
||||||
modules/smtp.nix
|
modules/smtp.nix
|
||||||
modules/starship.nix
|
|
||||||
# modules/powermanagement.nix
|
# modules/powermanagement.nix
|
||||||
|
|
||||||
];
|
];
|
||||||
|
|
Loading…
Reference in New Issue