From 09d413f6c0ab272ee4d6abb4cd6d4284a3d92607 Mon Sep 17 00:00:00 2001 From: Alexandre Date: Sun, 22 Mar 2026 21:47:42 +0100 Subject: [PATCH] Fixed warnings for framework host --- hosts/framework/configuration.nix | 4 +++- hosts/framework/modules.nix | 2 +- modules/home-manager/nvim.nix | 2 +- modules/nixos/desktop/lightDM.nix | 8 ++++++-- 4 files changed, 11 insertions(+), 5 deletions(-) diff --git a/hosts/framework/configuration.nix b/hosts/framework/configuration.nix index 0995380..3de8a15 100644 --- a/hosts/framework/configuration.nix +++ b/hosts/framework/configuration.nix @@ -62,7 +62,9 @@ }; zsh = { enable = true; - enableAutosuggestions = true; + autosuggestions = { + enable = true; + }; }; }; diff --git a/hosts/framework/modules.nix b/hosts/framework/modules.nix index 717da8d..dc7ec2d 100644 --- a/hosts/framework/modules.nix +++ b/hosts/framework/modules.nix @@ -11,7 +11,7 @@ in modules.nixos.secrets modules.nixos.desktop.bluetooth modules.nixos.desktop.utils - modules.nixos.gaming.kernel + #modules.nixos.gaming.kernel modules.nixos.gaming.amd modules.nixos.gaming.starCitizen modules.nixos.gaming.steam diff --git a/modules/home-manager/nvim.nix b/modules/home-manager/nvim.nix index 0f83961..30fbb95 100644 --- a/modules/home-manager/nvim.nix +++ b/modules/home-manager/nvim.nix @@ -153,7 +153,7 @@ enable = true; }; - ts-ls = { + ts_ls = { enable = true; }; diff --git a/modules/nixos/desktop/lightDM.nix b/modules/nixos/desktop/lightDM.nix index c14e1c6..c5b533c 100644 --- a/modules/nixos/desktop/lightDM.nix +++ b/modules/nixos/desktop/lightDM.nix @@ -1,9 +1,9 @@ { pkgs, ...}: { - services.xserver = { + services = { + xserver = { displayManager = { - defaultSession = "hyprland"; lightdm = { enable = true; greeters = { @@ -14,6 +14,10 @@ }; }; enable = true; + }; + displayManager = { + defaultSession = "hyprland"; + }; }; # EOF }