summaryrefslogtreecommitdiff
path: root/nixos/parts/graphical.nix
blob: 93082a9340d7c646c6934185d80fa3e1e778f7cb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
{ config, pkgs, ... }:

{
  programs.sway = {
    enable = true;
    # Execute sway with required environment variables for GTK apps.
    wrapperFeatures.gtk = true;
  };

  environment.systemPackages = with pkgs; [
  ];
}