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, pkgs,
lib, lib,
inputs, inputs,
config,
... ...
}: }:
{ {
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [
ripgrep ripgrep
nix-output-monitor nix-output-monitor
openssh
git
]; ];
services.nix-daemon.enable = true; services.nix-daemon.enable = true;
programs = { 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; zsh.enable = true;
}; };
@ -22,6 +33,7 @@
}; };
home-manager.users.artemis = { home-manager.users.artemis = {
imports = [ ../../home/ssh ];
programs.direnv = { programs.direnv = {
enable = true; enable = true;
nix-direnv.enable = true; nix-direnv.enable = true;