From 0e203b6ecabe0ada678bc7acb1dd90091d5581ed Mon Sep 17 00:00:00 2001 From: Victor Date: Sat, 30 Jul 2022 12:22:08 +0200 Subject: [PATCH] updated common config --- nixos/common/users/default.nix | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/nixos/common/users/default.nix b/nixos/common/users/default.nix index 8f7f6f1..96ae9ce 100644 --- a/nixos/common/users/default.nix +++ b/nixos/common/users/default.nix @@ -21,7 +21,7 @@ # otherwise it'll override the grml prompt promptInit = ""; }; - + environment.pathsToLink = [ "/share/zsh" ]; # Install Neovim and set it as alias for vi(m) @@ -44,6 +44,7 @@ "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIOFuxekX5WzX4GjbshtjaGyQcvMUgClugnK6T+OYIxw9 victor@null" "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIC8llUcEBHsLqotFZc++LNP2fjItuuzeUsu5ObXecYNj victor@eevee" "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAICBhJAp7NWlHgwDYd2z6VNROy5RkeZHRINFLsFvwT4b3 victor@bastion" + "sk-ssh-ed25519@openssh.com AAAAGnNrLXNzaC1lZDI1NTE5QG9wZW5zc2guY29tAAAAIM3TqXaApX2JZsgfZd7PKVFMecDgqTHKibpSzgdXNpYAAAAABHNzaDo= solov2-le" ]; # Make me admin @@ -59,5 +60,5 @@ }; # Setup packages available everywhere - environment.systemPackages = with pkgs; [ fzf git htop rsync ripgrep zoxide ]; + environment.systemPackages = with pkgs; [ fzf git htop ncdu rsync ripgrep zoxide ]; }