-
-
Notifications
You must be signed in to change notification settings - Fork 187
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
system freezes when i log in on gdm with the gnome target enabled #791
Comments
I assume you are also following $ git log master..release-24.11 modules/gnome 6.6s
commit 8cdd9f07259d63635920775740b3a349e62e56ca
Author: Devin <[email protected]>
Date: 2024-12-18 09:15:36 -0500
treewide: extend stylix.imageScalingMode support
Add stylix.imageScalingMode support to all modules except:
- hyprlock
- hyprpaper
- kde
- lightdm
- sway
Closes: https://github.com/danth/stylix/issues/677
Link: https://github.com/danth/stylix/pull/678
Reviewed-by: NAHO <[email protected]>
Reviewed-by: Daniel Thwaites <[email protected]>
(cherry picked from commit a2d66f25478103ac9b4adc6d6713794f7005221e)
commit f05a3c0e89fd51668190fa0e3e41c4ad0ffe388c
Author: Daniel Thwaites <[email protected]>
Date: 2024-12-03 21:46:45 +0000
gnome: update to GNOME 47.2 (#658)
Closes: https://github.com/danth/stylix/issues/618
Link: https://github.com/danth/stylix/pull/658
Approved-by: NAHO <[email protected]>
(cherry picked from commit ffba1f1bab63ea49541f812c72a4fcf305461d67) The inputs have also been changed twice: $ git log master..release-24.11 flake.lock
commit 8dd098840ed79f14d6e3d8054c300415f20746f7
Author: NAHO <[email protected]>
Date: 2024-12-10 19:40:15 +0100
stylix: lock nixpkgs and home-manager to 24.11 (#671)
commit f05a3c0e89fd51668190fa0e3e41c4ad0ffe388c
Author: Daniel Thwaites <[email protected]>
Date: 2024-12-03 21:46:45 +0000
gnome: update to GNOME 47.2 (#658)
Closes: https://github.com/danth/stylix/issues/618
Link: https://github.com/danth/stylix/pull/658
Approved-by: NAHO <[email protected]>
(cherry picked from commit ffba1f1bab63ea49541f812c72a4fcf305461d67) |
i only installed stylix two days ago. since it only freezes when i log in as my user, maybe my home-manager file will help: { config, pkgs, lib, ... }:
{
programs.home-manager.enable = true;
home.homeDirectory = "/home/alpha";
home.stateVersion = "24.05"; # Please read the comment before changing.
home.packages = with pkgs; [
gnomeExtensions.blur-my-shell
gnomeExtensions.caffeine
gnomeExtensions.clipboard-indicator
gnomeExtensions.hot-edge
gnomeExtensions.just-perfection
gnomeExtensions.rounded-window-corners-reborn
];
home.sessionVariables = {
EDITOR = "vim";
};
dconf = {
enable = true;
settings = {
"org/gnome/shell" = {
disable-user-extensions = false;
# `gnome-extensions list` for a list of installed extensions
enabled-extensions = [
"blur-my-shell@aunetx"
"[email protected]"
"[email protected]"
"[email protected]"
"just-perfection-desktop@just-perfection"
"rounded-window-corners-reborn@fxgn"
];
};
"org/gnome/shell/extensions/just-perfection" = {
keyboard-layout = false;
quick-settings-dark-mode = false;
screen-sharing-indicator = false;
window-demands-attention-focus = true;
switcher-popup-delay = false;
};
"org/gnome/desktop/interface" = {
# monospace-font-name = "Iosevka Comfy Motion Fixed 11";
# cursor-theme = "phinger-cursors-dark";
show-battery-percentage = true;
};
"org/gnome/desktop/peripherals/touchpad" = {
natural-scroll = false;
};
};
};
programs = {
git = {
enable = true;
userName = "paaradiso";
userEmail = "";
};
ssh = {
enable = true;
addKeysToAgent = "yes";
};
zsh = {
enable = true;
enableCompletion = true;
shellAliases = {
ls = "eza -la";
cd = "z";
};
initExtra = ''
autoload -Uz vcs_info
precmd() { vcs_info }
zstyle ':vcs_info:git:*' formats '%b '
setopt PROMPT_SUBST
PROMPT='%F{blue}%~%f %F{red}''${vcs_info_msg_0_}%f$ '
'';
};
zoxide = {
enable = true;
enableZshIntegration = true;
};
};
} |
Just to clarify:
Maybe your custom GNOME setup is for some reason incompatible with our Stylix setup. Do you still have the problem when you remove all your GNOME configurations and merely enable Stylix with its GNOME support? If not, try finding what exactly is causing the problem. Otherwise, consider taking a quick look at our GNOME implementation to see if there is anything that you know might be incompatible with your setup. Also, for good measure, do you have the same issue when running our VM test: nix run github:danth/stylix/e594886eb0951a0a0c28ffa333a9df6fb13857a1#testbed-gnome-dark Ignore the weird artifacts and flickering. They are caused by the VM itself... |
I wonder if one of your extensions might be causing this - could you try it with extensions disabled? |
i am using nixos and my stylix input is |
It looks like Just Perfection makes a lot of modifications to the theme. It's likely that this is conflicting with some of Stylix's modifications, and the extension is crashing rather than handling the situation gracefully.
|
nixpkgs version is 24.11, i am configuring stylix in my configuration.nix.
with
stylix.targets.gnome.enable = true
, when i log in as my user on gdm, all i can see is my cursor. i can't move it, and i can't change tty. i can log in as root.i can't find anything relevant in the journal and /var/log/gdm is empty.
configuration.nix:
The text was updated successfully, but these errors were encountered: