removing some cosmic stuff and fixing lots of things

This commit is contained in:
Chris Cochrun 2025-07-17 10:53:31 -05:00
parent e3e6cbe1b4
commit 17a592dc12
5 changed files with 40 additions and 32 deletions

View file

@ -33,7 +33,7 @@ in
boot.supportedFilesystems = [ "ntfs" ];
services = {
desktopManager.cosmic.enable = true;
desktopManager.cosmic.enable = false;
};
programs.nix-ld.enable = true;
@ -75,30 +75,34 @@ in
};
services.displayManager.cosmic-greeter = {
enable = true;
enable = false;
};
services.greetd = {
enable = true;
# settings = rec {
# initial_session = {
# command = "dbus-run-session Hyprland";
# # command = "dbus-run-session startplasma-wayland";
# user = "chris";
# };
# default_session = {
# command = "${pkgs.greetd.tuigreet}/bin/tuigreet --time -r --window-padding 2 --cmd 'dbus-run-session Hyprland' -s /etc/greetd/environments";
# user = "greeter";
# };
# plasma_session = {
# command = "dbus-run-session startplasma-wayland";
# user = "chris";
# };
# hyprland_session = {
# command = "Hyprland";
# user = "chris";
# };
# };
settings = rec {
initial_session = {
command = "if uwsm check may-start; then
exec uwsm start hyprland-uwsm.desktop
fi";
# command = "dbus-run-session startplasma-wayland";
user = "chris";
};
default_session = {
command = "${pkgs.greetd.tuigreet}/bin/tuigreet --time -r --window-padding 2 --cmd 'if uwsm check may-start; then
exec uwsm start hyprland-uwsm.desktop
fi' -s /etc/greetd/environments";
user = "greeter";
};
plasma_session = {
command = "dbus-run-session startplasma-wayland";
user = "chris";
};
hyprland_session = {
command = "Hyprland";
user = "chris";
};
};
};
programs.regreet = { enable = true; };