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

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

  environment.systemPackages = with pkgs; [
    i3status-rust
  ];
}