sway: don't use gtkUsePortal, it's deprecated

see: ebde08adf3
This commit is contained in:
teutat3s 2022-11-22 12:36:32 +01:00
parent e7ef245e32
commit 6a343e7540
Signed by: teutat3s
GPG key ID: 4FA1D3FA524F22C1

View file

@ -1,9 +1,12 @@
{ lib, config, pkgs, ... }:
with lib;
let
psCfg = config.pub-solar;
in
{
lib,
config,
pkgs,
...
}:
with lib; let
psCfg = config.pub-solar;
in {
options.pub-solar.sway = {
enable = mkEnableOption "Life in boxes";
@ -29,7 +32,7 @@ in
'';
})
({
{
environment.systemPackages = with pkgs; [
linuxPackages.v4l2loopback
];
@ -49,12 +52,12 @@ in
};
};
extraPortals = with pkgs; [xdg-desktop-portal-gtk];
gtkUsePortal = true;
};
services.pipewire.enable = true;
home-manager = with pkgs; pkgs.lib.setAttrByPath [ "users" psCfg.user.name ] {
home-manager = with pkgs;
pkgs.lib.setAttrByPath ["users" psCfg.user.name] {
home.packages = with pkgs; [
sway
grim
@ -102,6 +105,6 @@ in
xdg.configFile."sway/config.d/applications.conf".source = ./config/config.d/applications.conf;
xdg.configFile."sway/config.d/systemd.conf".source = ./config/config.d/systemd.conf;
};
})
}
]);
}