nixos-config/modules/nixos/system/desktop.nix
wo2wz 02266d90a1 desktop: remove bitwarden and bluetooth
dont need bluetooth anymore, havent used the bitwarden app in light of the browser extension (and web app exists otherwise)
2025-11-07 15:19:28 -05:00

33 lines
675 B
Nix
Executable file

{ config, pkgs, ... }:
{
networking.networkmanager.enable = true;
# mesa graphics library
hardware.graphics.enable = true;
# audio
services.pipewire = {
enable = true;
alsa.enable = true;
alsa.support32Bit = true;
pulse.enable = true;
};
security.rtkit.enable = true;
# CUPS
services.printing.enable = true;
# enable native wayland in chromium/electron
environment.sessionVariables.NIXOS_OZONE_WL = "1";
environment.systemPackages = with pkgs; [
kdePackages.gwenview
krita
vlc
gpu-screen-recorder-gtk
];
# needed alongside the GUI app for promptless recording
programs.gpu-screen-recorder.enable = true;
}