dont need bluetooth anymore, havent used the bitwarden app in light of the browser extension (and web app exists otherwise)
33 lines
675 B
Nix
Executable file
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;
|
|
}
|