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