dotfiles

My PC Dotfiles & Website

utils.nix (195B)


## Utilities
_: {
  nixos = {pkgs, ...}: {
    environment.systemPackages = with pkgs; [
      # Screen Mirroring
      wl-mirror

      # XWayland Support
      xwayland-satellite
    ];
  };
}