55 lines
1,009 B
Nix
55 lines
1,009 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
environment.systemPackages = with pkgs;
|
|
with libsForQt5.qt5; [
|
|
gtklock
|
|
dex
|
|
mesa
|
|
libnotify
|
|
glib
|
|
gsettings-desktop-schemas
|
|
qtgraphicaleffects
|
|
qtsvg
|
|
qtquickcontrols2
|
|
protonvpn-cli
|
|
protonvpn-gui
|
|
qbittorrent
|
|
];
|
|
security = {
|
|
rtkit.enable = true;
|
|
pam.services.gtklock.gnupg.enable = true;
|
|
};
|
|
sound.enable = true;
|
|
hardware = {
|
|
pulseaudio.enable = false;
|
|
bluetooth.enable = true;
|
|
};
|
|
services = {
|
|
greetd.enable = true;
|
|
pipewire = {
|
|
enable = true;
|
|
alsa.enable = true;
|
|
alsa.support32Bit = true;
|
|
pulse.enable = true;
|
|
};
|
|
xserver = {
|
|
layout = "gb";
|
|
xkbVariant = "";
|
|
};
|
|
};
|
|
console.keyMap = "uk";
|
|
programs = {
|
|
ssh.startAgent = true;
|
|
dconf.enable = true;
|
|
light.enable = true;
|
|
noisetorch.enable = true;
|
|
};
|
|
gtk.iconCache.enable = true;
|
|
qt = {
|
|
enable = true;
|
|
style = "gtk2";
|
|
platformTheme = "gtk2";
|
|
};
|
|
}
|