diff options
Diffstat (limited to 'modules/profiles/cosmic/default.nix')
-rw-r--r-- | modules/profiles/cosmic/default.nix | 12 |
1 files 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; |