From 3fbe1e57a67f95dc74bf5502eadbb93a575a118f Mon Sep 17 00:00:00 2001 From: MaeIsBad Date: Wed, 21 Sep 2022 14:56:03 +0200 Subject: [PATCH] Add .local/bin to paht --- users/mae/default.nix | 2 +- users/maekasza/default.nix | 2 +- users/profiles/core/default.nix | 3 +++ 3 files changed, 5 insertions(+), 2 deletions(-) create mode 100644 users/profiles/core/default.nix diff --git a/users/mae/default.nix b/users/mae/default.nix index b064a4b..8d6d323 100644 --- a/users/mae/default.nix +++ b/users/mae/default.nix @@ -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 = { diff --git a/users/maekasza/default.nix b/users/maekasza/default.nix index 861901e..31c7eb6 100644 --- a/users/maekasza/default.nix +++ b/users/maekasza/default.nix @@ -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 = '' diff --git a/users/profiles/core/default.nix b/users/profiles/core/default.nix new file mode 100644 index 0000000..bfed3d1 --- /dev/null +++ b/users/profiles/core/default.nix @@ -0,0 +1,3 @@ +{ + home.sessionPath = ["$HOME/.local/bin"]; +}