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"]; +}