aboutsummaryrefslogtreecommitdiff
path: root/hosts/common/desktop
diff options
context:
space:
mode:
authorFranck Cuny <franck@fcuny.net>2022-02-13 11:53:33 -0800
committerFranck Cuny <franck@fcuny.net>2022-02-13 11:53:33 -0800
commitd616727be55d694abd3a0872180196e98eede9b8 (patch)
tree3671aea74b0370c0568dc3f87477c9784218389b /hosts/common/desktop
parenthosts: remove configuration for ssh keys in initrd (diff)
downloadinfra-d616727be55d694abd3a0872180196e98eede9b8.tar.gz
desktop: ensure we're installing sway
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";
};
};