maud: okay now ssh works

This commit is contained in:
Artemis Tosini 2024-03-29 16:24:51 -04:00
parent b38ce971bf
commit 319a953061
Signed by: artemist
SSH key fingerprint: SHA256:EsuWCwx6fjxxExxf65rX+ocQJJAdw4R1KarpFue6Uwc

View file

@ -2,17 +2,28 @@
pkgs,
lib,
inputs,
config,
...
}:
{
environment.systemPackages = with pkgs; [
ripgrep
nix-output-monitor
openssh
git
];
services.nix-daemon.enable = true;
programs = {
fish.enable = true;
fish = {
enable = true;
loginShellInit = ''
fish_add_path --move --prepend --path ${
lib.escapeShellArgs (builtins.map (profile: "${profile}/bin") config.environment.profiles)
}
set fish_user_paths $fish_user_paths
'';
};
zsh.enable = true;
};
@ -22,6 +33,7 @@
};
home-manager.users.artemis = {
imports = [ ../../home/ssh ];
programs.direnv = {
enable = true;
nix-direnv.enable = true;