Adjust ssh configuration for nichkara

This commit is contained in:
Nina Chloé Kassandra Reiß
2026-02-27 22:31:31 +01:00
parent 799d942ce7
commit 69a6503c53
2 changed files with 22 additions and 14 deletions

View File

@@ -1,11 +1,5 @@
{ config, pkgs, ... }:
let
dotfiles_nvim = pkgs.fetchgit {
url = "https://git.nichkara.eu/nichkara/nvim";
rev = "4b1aa4c6342a5c1df864247aca3e553d81cc82a9";
sha256 = "sha256-0ODOTolosRHVm0Uc2NRGBpUFM5W3C53ScaL9OQQviW0=";
};
profile = import ../profile.nix;
in
{
@@ -24,12 +18,4 @@ in
withRuby = true;
withNodeJs = true;
};
home-manager.users.${profile.username} = { ... }: {
home.file.".config/nvim" = {
source = dotfiles_nvim;
recursive = true;
};
};
}