13 lines
161 B
Nix
13 lines
161 B
Nix
{ pkgs, lib, config, ... }:
|
|
{
|
|
imports = [
|
|
../gnome-keyring
|
|
../dbus
|
|
];
|
|
|
|
programs.sway = {
|
|
enable = true;
|
|
wrapperFeatures.gtk = true;
|
|
};
|
|
}
|