making build not actually build cosmic things
This commit is contained in:
parent
683463ec50
commit
3626b8f902
8 changed files with 44 additions and 23 deletions
|
@ -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; };
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue