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