From 41410609d30babc835a1240c7406d8de166e96a9 Mon Sep 17 00:00:00 2001 From: tdback Date: Fri, 10 Jan 2025 19:16:34 -0500 Subject: fix: no need to explicitly enable the experimental framebuffer --- modules/profiles/cosmic/default.nix | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/modules/profiles/cosmic/default.nix b/modules/profiles/cosmic/default.nix index 4dafd47..8a79845 100644 --- a/modules/profiles/cosmic/default.nix +++ b/modules/profiles/cosmic/default.nix @@ -14,18 +14,14 @@ ]; }; - # Use nvidia's experimental framebuffer device to remove a "phantom display" - # detected by `cosmic-randr list`. - boot.kernelParams = [ "nvidia_drm.fbdev=1" ]; - - # Enable `zwlr_data_control_manager_v1` protocol in cosmic-comp to fix the - # clipboard manager not working properly. - environment.sessionVariables.COSMIC_DATA_CONTROL_ENABLED = 1; - # Enable COSMIC! services.desktopManager.cosmic.enable = true; services.displayManager.cosmic-greeter.enable = true; + # Enable `zwlr_data_control_manager_v1` protocol in cosmic-comp in order to + # use the clipboard manager. + environment.sessionVariables.COSMIC_DATA_CONTROL_ENABLED = 1; + # Don't use flatpaks, which will pull in `cosmic-store`. services.flatpak.enable = false; -- cgit v1.2.3