107 lines
2.2 KiB
Nix
107 lines
2.2 KiB
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
imports = [
|
|
./pipewire.nix
|
|
];
|
|
|
|
i18n.inputMethod = {
|
|
enabled = "ibus";
|
|
ibus.engines = with pkgs.ibus-engines; [ mozc table-others m17n rime ];
|
|
};
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
gnome.gnome-tweaks
|
|
pavucontrol
|
|
paprefs
|
|
playerctl
|
|
xorg.xlsclients
|
|
gthumb
|
|
];
|
|
|
|
hardware.pulseaudio.enable = false;
|
|
|
|
fonts = {
|
|
enableDefaultFonts = false;
|
|
fontconfig = {
|
|
allowBitmaps = false;
|
|
};
|
|
fonts = with pkgs; [
|
|
# xorg.fontbhlucidatypewriter100dpi
|
|
# xorg.fontbhlucidatypewriter75dpi
|
|
# freefont_ttf
|
|
gyre-fonts # TrueType substitutes for standard PostScript fonts
|
|
# xorg.fontbh100dpi
|
|
# xorg.fontmiscmisc
|
|
# xorg.fontcursormisc
|
|
unifont
|
|
|
|
noto-fonts-emoji
|
|
noto-fonts-cjk
|
|
|
|
cantarell-fonts # from gnome3 module
|
|
|
|
merriweather
|
|
merriweather-sans
|
|
open-sans
|
|
# libertine # breaks
|
|
|
|
dejavu_fonts
|
|
liberation_ttf
|
|
ubuntu_font_family
|
|
|
|
wqy_microhei
|
|
ipafont
|
|
ipaexfont
|
|
source-han-serif
|
|
source-han-sans
|
|
|
|
inconsolata
|
|
iosevka
|
|
fira fira-mono fira-code
|
|
source-code-pro
|
|
stix-two
|
|
|
|
font-awesome_5
|
|
];
|
|
};
|
|
|
|
# prevent satanic torture
|
|
qt.platformTheme = "qt5ct";
|
|
|
|
hardware.uinput.enable = true;
|
|
users.extraUsers.gebner.extraGroups = [ "input" "tty" "audio" "video" "uinput" ];
|
|
|
|
hardware.bluetooth = {
|
|
enable = true;
|
|
package = pkgs.bluezFull;
|
|
};
|
|
services.blueman.enable = true;
|
|
|
|
programs.gnupg = {
|
|
agent.enable = true;
|
|
agent.pinentryFlavor = "gnome3";
|
|
};
|
|
|
|
services.xserver = {
|
|
enable = true;
|
|
# libinput.enable = true;
|
|
displayManager.gdm.enable = true;
|
|
# displayManager.defaultSession = "gnome";
|
|
|
|
desktopManager.gnome = {
|
|
enable = true;
|
|
};
|
|
};
|
|
|
|
# rust winit's wayland support is broken for input methods
|
|
environment.sessionVariables.WINIT_UNIX_BACKEND = "x11";
|
|
|
|
# services.xserver.enable = true;
|
|
# services.xserver.displayManager.gdm.enable = true;
|
|
# services.xserver.displayManager.desktopManagerHandlesLidAndPower = false;
|
|
# services.xserver.layout = "us";
|
|
# services.xserver.xkbVariant = "altgr-intl";
|
|
# services.xserver.xkbOptions = "caps:ctrl_modifier";
|
|
}
|