10 lines
215 B
Nix
10 lines
215 B
Nix
inputs:
|
|
{ config, lib, pkgs, ... }: {
|
|
services.gnome.gnome-keyring.enable = true;
|
|
programs.sway = {
|
|
enable = true;
|
|
wrapperFeatures.gtk = true;
|
|
};
|
|
environment.sessionVariables.NIXOS_OZONE_WL = "1";
|
|
}
|