10 lines
137 B
Nix
10 lines
137 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
programs.dconf.enable = true;
|
|
|
|
programs.sway = {
|
|
enable = true;
|
|
wrapperFeatures.gtk = true;
|
|
};
|
|
}
|