From ed505c448eaacdde21e93fd5e5a08b51a60a414a Mon Sep 17 00:00:00 2001 From: Nate Anderson Date: Fri, 15 Dec 2023 12:06:59 -0700 Subject: [PATCH] Cleaned up portal warning, changed steam to system install instead of in home manager " --- modules/home-manager/home.nix | 2 +- nixos/sway_configuration.nix | 9 ++++++++- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/modules/home-manager/home.nix b/modules/home-manager/home.nix index 198bbe1..03e66a5 100644 --- a/modules/home-manager/home.nix +++ b/modules/home-manager/home.nix @@ -32,7 +32,7 @@ networkmanagerapplet obs-studio signal-desktop - steam + # steam waybar wofi xfce.thunar diff --git a/nixos/sway_configuration.nix b/nixos/sway_configuration.nix index d71fb83..d25a1ab 100644 --- a/nixos/sway_configuration.nix +++ b/nixos/sway_configuration.nix @@ -70,8 +70,14 @@ # Setup xdg portal for screen share xdg.portal = { + config = { + common = { + default = [ + "wlr" + ]; + }; + }; extraPortals = with pkgs; [ - # xdg-desktop-portal-wlr # xdg-desktop-portal-kde xdg-desktop-portal-gtk ]; @@ -87,6 +93,7 @@ }; programs.zsh.enable = true; + programs.steam.enable = true; # Corectrl from stable branch # inputs.nixpkgs-stable.lib.nixosSystem.programs.corectrl.enable = true;