maud: okay now ssh works
This commit is contained in:
parent
b38ce971bf
commit
319a953061
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue