nixos/hosts/desktop.nix

25 lines
508 B
Nix
Raw Normal View History

{ 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;
}