1
Fork 0
dotfiles/.bauke/nix/stardust/programs-services.nix

65 lines
1.0 KiB
Nix
Raw Permalink Normal View History

2023-02-01 13:31:56 +00:00
# Configuration for programs and services.
{ pkgs, ... }:
{
programs = {
2024-01-12 11:28:13 +00:00
adb = {
enable = true;
};
2024-03-04 15:18:49 +00:00
gamemode = {
enable = true;
};
2023-02-01 13:31:56 +00:00
gnupg = {
agent = {
enable = true;
enableSSHSupport = true;
};
};
thunar = {
plugins = with pkgs.xfce; [ thunar-archive-plugin ];
};
zsh = {
enable = true;
};
};
services = {
avahi = {
enable = true;
nssmdns = true;
};
pipewire = {
alsa.enable = true;
alsa.support32Bit = true;
enable = true;
pulse.enable = true;
2024-02-20 16:56:38 +00:00
jack.enable = true;
2023-02-01 13:31:56 +00:00
};
2023-11-22 13:47:27 +00:00
usbmuxd.enable = true;
2023-02-01 13:31:56 +00:00
xserver = {
2024-03-26 12:49:04 +00:00
desktopManager.xfce.enable = true;
2023-02-01 13:31:56 +00:00
enable = true;
layout = "be";
videoDrivers = [ "nvidia" ];
xkbVariant = "";
displayManager = {
lightdm = {
enable = true;
extraSeatDefaults = ''
greeter-setup-script=${pkgs.numlockx}/bin/numlockx on
'';
};
};
2023-02-01 13:31:56 +00:00
};
};
}