mirror of
https://github.com/willemml/dotfiles.nix.git
synced 2025-04-12 19:27:17 +00:00
30 lines
548 B
Nix
30 lines
548 B
Nix
{pkgs, ...}: {
|
|
environment.systemPackages = with pkgs; [
|
|
freecad
|
|
qbittorrent
|
|
vlc
|
|
];
|
|
|
|
services.pipewire = {
|
|
enable = true;
|
|
alsa.enable = true;
|
|
alsa.support32Bit = true;
|
|
pulse.enable = true;
|
|
};
|
|
|
|
services.printing.enable = true;
|
|
|
|
hardware.pulseaudio.enable = false;
|
|
|
|
security.rtkit.enable = true;
|
|
|
|
services.xserver = {
|
|
enable = true;
|
|
layout = "us";
|
|
libinput.mouse.naturalScrolling = true;
|
|
libinput.touchpad.naturalScrolling = true;
|
|
xkbVariant = "colemak";
|
|
};
|
|
|
|
sound.enable = true;
|
|
}
|