fix: resolve NixOS and Home Manager deprecation warnings

This commit is contained in:
2025-12-01 14:42:39 +01:00
parent b5b7d8560e
commit e39c2a165e
4 changed files with 8 additions and 5 deletions

View File

@@ -7,7 +7,7 @@
{
programs.git = {
enable = true;
extraConfig = {
settings = {
pull.rebase = true;
push.autoSetupRemote = true;
color.ui = "auto";

View File

@@ -17,10 +17,13 @@
programs.ssh = {
enable = true;
compression = true;
# compression moved to matchBlocks."*"
# Default config is deprecated, disabling it and managing defaults manually if needed
enableDefaultConfig = false;
matchBlocks = {
"*" = {
compression = true;
identityFile = [
"~/.ssh/nixos"
"~/.ssh/id_ed25519"

View File

@@ -9,7 +9,7 @@
home.packages = with pkgs; [
nodejs
copilot-language-server-fhs
copilot-language-server
github-copilot-cli
nixd
nodejs-slim
@@ -22,7 +22,7 @@
extraPackages = with pkgs; [
nodejs
copilot-language-server-fhs
copilot-language-server
github-copilot-cli
nixd
nodejs-slim

View File

@@ -67,7 +67,7 @@
enableSSHSupport = true;
};
services.xserver.desktopManager.gnome.enable=true;
services.desktopManager.gnome.enable=true;
# This option defines the first version of NixOS you have installed on this particular machine,