diff options
author | tdback <tyler@tdback.net> | 2025-01-10 19:16:34 -0500 |
---|---|---|
committer | tdback <tyler@tdback.net> | 2025-01-10 19:16:34 -0500 |
commit | 41410609d30babc835a1240c7406d8de166e96a9 (patch) | |
tree | 16a13ca9a6b82d6e0445f03c34139287b95f66e2 /modules/profiles/cosmic/default.nix | |
parent | e49b33fe446ca5a47f9eb04b5163609835db3dad (diff) |
fix: no need to explicitly enable the experimental framebuffer
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; |