diff options
| author | quentin@aristote.fr <quentin@aristote.fr> | 2023-03-18 13:34:13 +0100 |
|---|---|---|
| committer | quentin@aristote.fr <quentin@aristote.fr> | 2023-03-18 16:04:12 +0100 |
| commit | e0259412d09499f30fdf7b3c579667313a991fa7 (patch) | |
| tree | b2621c0847de4f64cc15b82de5d6724f42bc1ccc /config/environment.nix | |
initial commit
Diffstat (limited to 'config/environment.nix')
| -rw-r--r-- | config/environment.nix | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/config/environment.nix b/config/environment.nix new file mode 100644 index 0000000..61f55ff --- /dev/null +++ b/config/environment.nix @@ -0,0 +1,11 @@ +{ pkgs, ... }: + +{ + personal.environment = { + enable = true; + locale.enable = true; + }; + programs.bash.promptInit = '' + PS1="\n\[\033[1;32m\][\[\e]0;\u@$(hostname -f): \w\a\]\u@$(hostname -f):\w]\$\[\033[0m\] " + ''; +} |
