diff options
author | Preston Pan <ret2pop@gmail.com> | 2025-02-18 22:38:45 -0800 |
---|---|---|
committer | Preston Pan <ret2pop@gmail.com> | 2025-02-18 22:38:45 -0800 |
commit | 6f8dc8ecbeae8690a6e92a0a44916e6e17ba950f (patch) | |
tree | d874bc15e52cb201aaac3a82e948061fe93625a0 /nix/modules/home | |
parent | f36be340c309f413f095f3ba704b3188c92ffdd9 (diff) |
Diffstat (limited to 'nix/modules/home')
-rw-r--r-- | nix/modules/home/default.nix | 3 | ||||
-rw-r--r-- | nix/modules/home/zsh.nix | 4 |
2 files changed, 4 insertions, 3 deletions
diff --git a/nix/modules/home/default.nix b/nix/modules/home/default.nix index 06c43dc..d2277da 100644 --- a/nix/modules/home/default.nix +++ b/nix/modules/home/default.nix @@ -96,7 +96,7 @@ ]) else []) ++ (if config.monorepo.profiles.lang-python.enable then (with pkgs; [ - poetry + poetry python3 python312Packages.jedi ]) else []) @@ -122,6 +122,7 @@ nil nixd nixfmt-rfc-style + nix-prefetch-scripts ]) else []) ++ (if config.monorepo.profiles.crypto.enable then (with pkgs; [ diff --git a/nix/modules/home/zsh.nix b/nix/modules/home/zsh.nix index 0c5bced..263cc58 100644 --- a/nix/modules/home/zsh.nix +++ b/nix/modules/home/zsh.nix @@ -27,9 +27,9 @@ rb = "sudo nixos-rebuild switch --flake .#continuity"; rba = "sudo nixos-rebuild switch --flake .#affinity"; nfu = "cd ~/monorepo/nix && git add . && git commit -m \"new flake lock\" && nix flake update"; - usync = "rsync -azvP --chmod=\"Du=rwx,Dg=rx,Do=rx,Fu=rw,Fg=r,Fo=r\" ~/website_html/ root@nullring.xyz:/usr/share/nginx/ret2pop/"; + usync = "rsync -azvP --chmod=\"Du=rwx,Dg=rx,Do=rx,Fu=rw,Fg=r,Fo=r\" ~/website_html/ root@${config.monorepo.vars.remoteHost}:/var/www/ret2pop-website/"; usite - = "cd ~/src/publish-org-roam-ui && bash local.sh && rm -rf ~/website_html/graph_view; cp -r ~/src/publish-org-roam-ui/out ~/website_html/graph_view && rsync -azvP --chmod=\"Du=rwx,Dg=rx,Do=rx,Fu=rw,Fg=r,Fo=r\" ~/website_html/ root@${config.monorepo.vars.remoteHost}:/usr/share/nginx/ret2pop/"; + = "cd ~/src/publish-org-roam-ui && bash local.sh && rm -rf ~/website_html/graph_view; cp -r ~/src/publish-org-roam-ui/out ~/website_html/graph_view && rsync -azvP --chmod=\"Du=rwx,Dg=rx,Do=rx,Fu=rw,Fg=r,Fo=r\" ~/website_html/ root@${config.monorepo.vars.remoteHost}:/var/www/ret2pop-website/"; sai = "eval \"$(ssh-agent -s)\" && ssh-add ~/.ssh/id_ed25519 && ssh-add -l"; i3 = "exec ${pkgs.i3-gaps}/bin/i3"; }; |