inputs: { pkgs, ... }: { imports = [ (import ./graphical/alacritty.nix inputs) (import ./graphical/firefox.nix inputs) (import ./graphical/gtk.nix inputs) (import ./graphical/mpv.nix inputs) (import ./graphical/plymouth.nix inputs) (import ./graphical/rofi.nix inputs) (import ./graphical/sway.nix inputs) (import ./graphical/waybar.nix inputs) (import ./graphical/zathura.nix inputs) ]; users.extraUsers.minijackson.packages = with pkgs; [ arandr dconf gnome3.eog gnome3.evince gnome3.file-roller gnome3.gnome-disk-utility gnome3.gucharmap gnome3.nautilus qutebrowser xdg-utils xsel unstable.planify ]; programs.evolution.enable = true; services.gvfs.enable = true; fonts = { enableDefaultPackages = true; packages = with pkgs; [ fira fira-mono dejavu_fonts freefont_ttf liberation_ttf libertinus noto-fonts-cjk #fira-mono-italic lmodern # Symbols unifont siji font-awesome_5 #joypixels atkinson-hyperlegible manrope open-fonts alegreya alegreya-sans # Collections unstable.league-of-moveable-type unstable.dotcolon-fonts nerdfonts # Compatibility fonts carlito ]; fontconfig = { #ultimate.enable = true; defaultFonts = { serif = ["DejaVu Serif"]; sansSerif = ["Atkinson Hyperlegible"]; monospace = ["FiraMono Nerd Font"]; #emoji = [ "JoyPixels" ]; }; }; }; hardware.opengl.enable = true; programs.dconf.enable = true; qt = { enable = true; style = "adwaita-dark"; platformTheme = "gnome"; }; environment.systemPackages = with pkgs; [qgnomeplatform adwaita-qt]; xdg = { sounds.enable = true; portal = { enable = true; # xdgOpenUsePortal = true; extraPortals = with pkgs; [ xdg-desktop-portal-gtk ]; }; }; programs.gnupg.agent.pinentryFlavor = "gnome3"; # For KDEConnect networking.firewall.allowedTCPPortRanges = [ { from = 1714; to = 1764; } ]; networking.firewall.allowedUDPPortRanges = [ { from = 1714; to = 1764; } ]; home-manager.users.minijackson = {config, ...}: { services.kdeconnect = { enable = true; indicator = true; }; home.sessionVariables.BOGOFILTER_DIR = "${config.xdg.dataHome}/bogofilter"; }; }