Cosmic updates
This commit is contained in:
5
modules/system/gui/cosmic-greeter.nix
Normal file
5
modules/system/gui/cosmic-greeter.nix
Normal file
@@ -0,0 +1,5 @@
|
||||
{ ... }:
|
||||
|
||||
{
|
||||
services.displayManager.cosmic-greeter.enable = true;
|
||||
}
|
9
modules/system/gui/cosmic.nix
Normal file
9
modules/system/gui/cosmic.nix
Normal file
@@ -0,0 +1,9 @@
|
||||
{ ... }:
|
||||
|
||||
{
|
||||
services.desktopManager.cosmic.enable = true;
|
||||
|
||||
environment.sessionVariables = {
|
||||
COSMIC_DISABLE_DIRECT_SCANOUT = "true";
|
||||
};
|
||||
}
|
@@ -7,29 +7,6 @@
|
||||
xwayland.enable = true;
|
||||
};
|
||||
|
||||
# Configure display manager
|
||||
# services.greetd = {
|
||||
# enable = true;
|
||||
# settings = {
|
||||
# default_session = {
|
||||
# command = "${pkgs.greetd.tuigreet}/bin/tuigreet --remember --time --cmd Hyprland";
|
||||
# user = "xeovalyte";
|
||||
# };
|
||||
# };
|
||||
# };
|
||||
|
||||
# SDDM configuration
|
||||
# environment.systemPackages = with pkgs; [
|
||||
# libsForQt5.qt5.qtquickcontrols2
|
||||
# libsForQt5.qt5.qtgraphicaleffects
|
||||
# ];
|
||||
|
||||
# services.displayManager.sddm = {
|
||||
# enable = true;
|
||||
# wayland.enable = true;
|
||||
# theme = "${import ./sddm-theme.nix { inherit pkgs; }}";
|
||||
# };
|
||||
|
||||
# Sound configuration
|
||||
hardware.pulseaudio.enable = false;
|
||||
security.rtkit.enable = true;
|
||||
|
14
modules/system/gui/sddm.nix
Normal file
14
modules/system/gui/sddm.nix
Normal file
@@ -0,0 +1,14 @@
|
||||
{ pkgs, ... }:
|
||||
|
||||
{
|
||||
environment.systemPackages = with pkgs; [
|
||||
libsForQt5.qt5.qtquickcontrols2
|
||||
libsForQt5.qt5.qtgraphicaleffects
|
||||
];
|
||||
|
||||
services.displayManager.sddm = {
|
||||
enable = true;
|
||||
wayland.enable = true;
|
||||
theme = "${import ./sddm-theme.nix { inherit pkgs; }}";
|
||||
};
|
||||
}
|
Reference in New Issue
Block a user