diff options
author | polwex <polwex@sortug.com> | 2025-05-17 07:24:14 +0000 |
---|---|---|
committer | polwex <polwex@sortug.com> | 2025-05-17 07:24:14 +0000 |
commit | 9d89a55dff02122ebef9d8c7b388707084bac2fa (patch) | |
tree | 015a6a49ddc1f484960e7977e624d1d971a45453 /hosts/local/i3.nix | |
parent | bb5002c60d57600ecb812720106a88df80d07362 (diff) | |
parent | 3efdd55d5cc2e784c6934e9d133f16844c324aad (diff) |
Merge branch 'master' of mygit:/polwex/nixconf
Diffstat (limited to 'hosts/local/i3.nix')
-rw-r--r-- | hosts/local/i3.nix | 18 |
1 files changed, 15 insertions, 3 deletions
diff --git a/hosts/local/i3.nix b/hosts/local/i3.nix index f955c56..b9e67a7 100644 --- a/hosts/local/i3.nix +++ b/hosts/local/i3.nix @@ -1,10 +1,14 @@ {pkgs, ...}: { environment.pathsToLink = ["/libexec"]; services.xserver = { - xkb.layout = "us"; - xkb.variant = ""; + xkb.options = "compose:ralt"; + # xkb.layout = "us"; + # xkb.variant = ""; enable = true; autorun = false; + # displayManager = { + # startx.enable = true; + # }; desktopManager = { xterm.enable = false; }; @@ -45,6 +49,7 @@ # screenshots flameshot shutter + maim xclip pavucontrol # icons @@ -111,7 +116,14 @@ # screen capture # - xdg.portal.enable = true; + xdg.portal = { + enable = true; + xdgOpenUsePortal = true; + extraPortals = [ + pkgs.xdg-desktop-portal-gtk + pkgs.xdg-desktop-portal-gnome + ]; + }; xdg.portal.config.common.default = "*"; xdg.portal.wlr.enable = true; services.dbus.enable = true; |