mirror of
https://codeberg.org/hyperreal/home-manager
synced 2024-11-01 17:23:06 +01:00
Fix PATH
This commit is contained in:
parent
ce60d2a64c
commit
581e3a86d8
9
home.nix
9
home.nix
@ -10,12 +10,6 @@
|
||||
# manage.
|
||||
home.username = "jas";
|
||||
home.homeDirectory = "/home/jas";
|
||||
home.sessionPath = [
|
||||
"\${config.home.homeDirectory}/bin"
|
||||
"\${config.home.homeDirectory}/.local/bin"
|
||||
"\${config.home.homeDirectory}/go/bin"
|
||||
];
|
||||
|
||||
home.stateVersion = "24.05"; # Please read the comment before changing.
|
||||
|
||||
# The home.packages option allows you to install Nix packages into your
|
||||
@ -93,6 +87,9 @@
|
||||
enableCompletion = true;
|
||||
autosuggestion.enable = true;
|
||||
autocd = false;
|
||||
envExtra = ''
|
||||
export PATH="$HOME/bin:$HOME/.local/bin:/usr/sbin:$PATH"
|
||||
'';
|
||||
history = {
|
||||
extended = true;
|
||||
ignoreAllDups = false;
|
||||
|
Loading…
Reference in New Issue
Block a user