Add .local/bin to paht

This commit is contained in:
MaeIsBad 2022-09-21 14:56:03 +02:00
parent 87874134fc
commit 3fbe1e57a6
3 changed files with 5 additions and 2 deletions

View file

@ -9,7 +9,7 @@
extraGroups = [ "wheel" "video" "lp" "scanner" "adbusers" "render" "libvirtd" "podman" "docker" ];
};
home-manager.users.mae = { pkgs, ... }: {
imports = [ ../profiles/direnv ../profiles/git ../profiles/zsh ../profiles/neovim ../profiles/syncthing ../profiles/kdeconnect ../profiles/podman ../profiles/tmux ../profiles/mpv ../profiles/sway ];
imports = [ ../profiles/core ../profiles/direnv ../profiles/git ../profiles/zsh ../profiles/neovim ../profiles/syncthing ../profiles/kdeconnect ../profiles/podman ../profiles/tmux ../profiles/mpv ../profiles/sway ];
mae.alacritty.enable = true;
home.sessionVariables = {

View file

@ -1,5 +1,5 @@
{ pkgs, ... }: {
imports = [ ../profiles/direnv ../profiles/zsh ../profiles/neovim ../profiles/syncthing ../profiles/kdeconnect ../profiles/tmux ../profiles/mpv ../profiles/sway ];
imports = [ ../profiles/core ../profiles/direnv ../profiles/zsh ../profiles/neovim ../profiles/syncthing ../profiles/kdeconnect ../profiles/tmux ../profiles/mpv ../profiles/sway ];
targets.genericLinux.enable = true;
home.packages = [ pkgs.home-manager ];
wayland.windowManager.sway.extraSessionCommands = ''

View file

@ -0,0 +1,3 @@
{
home.sessionPath = ["$HOME/.local/bin"];
}