aboutsummaryrefslogtreecommitdiff
path: root/hosts/common/desktop
diff options
context:
space:
mode:
Diffstat (limited to 'hosts/common/desktop')
-rw-r--r--hosts/common/desktop/xserver.nix8
1 files changed, 7 insertions, 1 deletions
diff --git a/hosts/common/desktop/xserver.nix b/hosts/common/desktop/xserver.nix
index 1935e06..3b61e02 100644
--- a/hosts/common/desktop/xserver.nix
+++ b/hosts/common/desktop/xserver.nix
@@ -1,6 +1,12 @@
{ config, pkgs, lib, ... }:
{
+
+ programs.sway = {
+ enable = true;
+ wrapperFeatures.gtk = true;
+ };
+
services.xserver = {
enable = true;
layout = "us";
@@ -9,7 +15,7 @@
displayManager = {
gdm.enable = true;
gdm.wayland = true;
- defaultSession = "sway"
+ defaultSession = "sway";
};
};