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