Want to contribute? Fork me on Codeberg.org!
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

48 lines
1.0 KiB

{ config, pkgs, ... }:
{
services = {
xserver = {
enable = true;
libinput = {
enable = true;
touchpad.tapping = true;
};
xkbOptions = "caps:escape";
displayManager = {
lightdm = {
enable = true;
greeters.gtk = {
enable = true;
theme = {
name = "Nordic";
package = pkgs.nordic;
};
};
};
defaultSession = "none+i3";
};
windowManager.i3 = {
enable = true;
package = pkgs.i3-gaps;
};
};
};
2 years ago
# Enable OpenTabletDriver, GUI configurator is otd-gui
hardware.opentabletdriver.enable = true;
# To prevent `Unit dconf.service not found.` after theming GTK in HM
programs.dconf.enable = true;
sound.enable = true;
hardware.pulseaudio.enable = true;
nixpkgs.config.pulseaudio = true;
fonts.fonts = with pkgs; [
noto-fonts
noto-fonts-cjk
(nerdfonts.override { fonts = [ "FiraCode" ]; }) # required for icons
];
}