mirror of
https://github.com/willemml/dotfiles.nix.git
synced 2025-04-13 19:57:19 +00:00
32 lines
551 B
Nix
32 lines
551 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;
|
|
}
|