25 lines
508 B
Nix
25 lines
508 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
imports = [ ./common.nix ];
|
|
environment.systemPackages = with pkgs; [ libnotify ];
|
|
security.rtkit.enable = true;
|
|
sound.enable = true;
|
|
hardware.pulseaudio.enable = false;
|
|
services = {
|
|
pipewire = {
|
|
enable = true;
|
|
alsa.enable = true;
|
|
alsa.support32Bit = true;
|
|
pulse.enable = true;
|
|
};
|
|
xserver = {
|
|
layout = "gb";
|
|
xkbVariant = "";
|
|
};
|
|
};
|
|
console.keyMap = "uk";
|
|
programs.ssh.startAgent = true;
|
|
programs.dconf.enable = true;
|
|
}
|