Fixed warnings for framework host

This commit is contained in:
Alexandre 2026-03-22 21:47:42 +01:00
parent 03c50a8504
commit 09d413f6c0
4 changed files with 11 additions and 5 deletions

View File

@ -62,7 +62,9 @@
};
zsh = {
enable = true;
enableAutosuggestions = true;
autosuggestions = {
enable = true;
};
};
};

View File

@ -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

View File

@ -153,7 +153,7 @@
enable = true;
};
ts-ls = {
ts_ls = {
enable = true;
};

View File

@ -1,9 +1,9 @@
{ pkgs, ...}:
{
services.xserver = {
services = {
xserver = {
displayManager = {
defaultSession = "hyprland";
lightdm = {
enable = true;
greeters = {
@ -15,5 +15,9 @@
};
enable = true;
};
displayManager = {
defaultSession = "hyprland";
};
};
# EOF
}