inputs: { pkgs, ... }: { imports = [ (import ./graphical/alacritty.nix inputs) (import ./graphical/mpv.nix inputs) (import ./graphical/rofi.nix inputs) (import ./graphical/sway.nix inputs) (import ./graphical/waybar.nix inputs) (import ./graphical/zathura.nix inputs) ]; fonts = { enableDefaultFonts = true; fonts = with pkgs; [ fira fira-mono dejavu_fonts freefont_ttf liberation_ttf noto-fonts-cjk #fira-mono-italic lmodern # Symbols unifont siji font-awesome_5 #joypixels # Collections league-of-moveable-type ]; fontconfig = { #ultimate.enable = true; defaultFonts = { serif = [ "DejaVu Serif" ]; sansSerif = [ "DejaVu Sans" ]; monospace = [ "Fira Mono" ]; #emoji = [ "JoyPixels" ]; }; }; }; hardware.opengl.enable = true; programs.dconf.enable = true; xdg = { sounds.enable = true; portal = { enable = true; extraPortals = with pkgs; [ xdg-desktop-portal-gtk ]; gtkUsePortal = true; }; }; # For KDEConnect networking.firewall.allowedTCPPortRanges = [{ from = 1714; to = 1764; }]; networking.firewall.allowedUDPPortRanges = [{ from = 1714; to = 1764; }]; home-manager.users.minijackson = { services.kdeconnect = { enable = true; indicator = true; }; }; }