1 { pkgs, lib, config, nixosConfig, ... }:
11 pkgs.gnome.dconf-editor
12 pkgs.hicolor-icon-theme
19 #services.gnome.at-spi2-core.enable = true;
20 home.sessionVariables = lib.mkIf (!nixosConfig.services.gnome.at-spi2-core.enable) {
23 services.redshift.enable = lib.mkDefault true;
24 home.file.".Xmodmap".text = ''
25 ! œ and Œ with AltGr+o and AltGr+Shift+o
26 keycode 32 = o O o O oe OE
28 systemd.user.services.setxkbmap.Service.ExecStartPost =
29 "${pkgs.xorg.xmodmap}/bin/xmodmap ${config.home.homeDirectory}/.Xmodmap";