feat: refactor

This commit is contained in:
Barrett Ruth 2026-02-13 21:34:53 -05:00
parent 332a7dbfbe
commit 30286dbedb
Signed by: barrett
GPG key ID: A6C96C9349D2FC81
13 changed files with 231 additions and 151 deletions

View file

@ -2,7 +2,7 @@
pkgs,
lib,
config,
isNixOS,
hostConfig,
...
}:
@ -28,7 +28,6 @@ in
[
awscli2
pure-prompt
xclip
tree
jq
curl
@ -43,6 +42,7 @@ in
librsvg
imagemagick
]
++ lib.optionals hostConfig.isLinux [ xclip ]
++ lib.optionals rust [ rustup ];
home.sessionVariables = lib.mkMerge [
@ -191,7 +191,7 @@ in
dotDir = "${config.xdg.configHome}/zsh";
completionInit = "";
profileExtra = ''
profileExtra = lib.mkIf hostConfig.isLinux ''
[ "$(tty)" = "/dev/tty1" ] && [ -z "$WAYLAND_DISPLAY" ] && start-hyprland
'';