nixos/system/desktop.nix

58 lines
1.1 KiB
Nix
Raw Normal View History

{ pkgs, ... }:
{
environment.systemPackages = with pkgs;
with libsForQt5.qt5; [
dex
mesa
libnotify
glib
gsettings-desktop-schemas
qtgraphicaleffects
qtsvg
qtquickcontrols2
catppuccin-sddm-corners
protonvpn-cli
protonvpn-gui
qbittorrent
];
security.rtkit.enable = true;
sound.enable = true;
hardware = {
pulseaudio.enable = false;
bluetooth.enable = true;
};
services = {
pipewire = {
enable = true;
alsa.enable = true;
alsa.support32Bit = true;
pulse.enable = true;
};
xserver = {
enable = true;
layout = "gb";
xkbVariant = "";
displayManager.sddm = {
enable = true;
theme = "catppuccin-sddm-corners";
autoNumlock = true;
settings = { General = { InputMethod = ""; }; };
};
};
};
console.keyMap = "uk";
programs = {
ssh.startAgent = true;
dconf.enable = true;
light.enable = true;
2023-09-13 14:57:51 +01:00
noisetorch.enable = true;
};
gtk.iconCache.enable = true;
qt = {
enable = true;
style = "gtk2";
platformTheme = "gtk2";
};
}