Try to make cloud hosts work.

This commit is contained in:
2025-10-24 14:58:00 +01:00
parent 4921679140
commit f918ff5df2
4 changed files with 32 additions and 2 deletions

22
home/profiles/cloud.nix Normal file
View File

@@ -0,0 +1,22 @@
{ pkgs }:
let
corePkgs = with pkgs; [
direnv
fzf
git
mosh
ripgrep
tmux
zsh
];
fishPkgs = with pkgs.fishPlugins; [
pure
# don't add failed commands to history
sponge
transient-fish
];
in
{
packages = corePkgs ++ fishPkgs;
}