Compare commits

...

3 Commits

Author SHA1 Message Date
Nina Chlóe Kassandra Reiß
ac4b17da6a Hyprland configuration update 2026-04-21 14:40:16 +02:00
Nina Chlóe Kassandra Reiß
6770a680ad Add nextcloud init to home-manager 2026-04-21 14:30:03 +02:00
Nina Chlóe Kassandra Reiß
591d110120 Update ssh to make it future proof 2026-04-21 12:44:42 +02:00
2 changed files with 12 additions and 4 deletions

View File

@@ -2,8 +2,8 @@
let let
dotfiles_hypr = pkgs.fetchgit { dotfiles_hypr = pkgs.fetchgit {
url = "https://git.nichkara.eu/dotfiles/hypr"; url = "https://git.nichkara.eu/dotfiles/hypr";
rev = "83da92f0d64620c6503b8b2d9fa27bd79816e025"; rev = "ba03a7d86bf564cbb9e817b895a2497da84b8bad";
sha256 = "sha256-kEKJiH0oK0PuciJZ6ucinTKX5eMWxPPZXYNS1+HIcRA="; sha256 = "sha256-mbE94wrz3Gl7IE7uD5sCTyII4eQcsjFhyafeOeTgy6s=";
}; };
dotfiles_waybar = pkgs.fetchgit { dotfiles_waybar = pkgs.fetchgit {
@@ -42,7 +42,10 @@ in
windowManager = { windowManager = {
hyprland = { hyprland = {
enable = true; enable = true;
#xwayland.enable = true; xwayland.enable = true;
extraConfig = ''
exec-once = sleep 2 && nextcloud
'';
}; };
}; };
}; };

View File

@@ -5,7 +5,12 @@ in
{ {
programs.ssh = { programs.ssh = {
enable = true; enable = true;
enableDefaultConfig = true; enableDefaultConfig = false;
matchBlocks."*" = {
compression = true;
serverAliveInterval = 60;
};
extraConfig = '' extraConfig = ''
Host git.nickr.eu Host git.nickr.eu