making build not actually build cosmic things

This commit is contained in:
Chris Cochrun 2024-12-05 14:14:23 -06:00
parent 683463ec50
commit 3626b8f902
8 changed files with 44 additions and 23 deletions

View file

@ -29,7 +29,7 @@
boot.supportedFilesystems = [ "ntfs" ];
services = {
desktopManager.cosmic.enable = true;
desktopManager.cosmic.enable = false;
};
programs.nix-ld.enable = true;
@ -64,11 +64,30 @@
};
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";
};
};
};
programs.regreet = { enable = true; };